fc4d4144fb
Change-Id: Ic643e3bbf521fa116984a27f504a2642f2052f36 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/210100 Commit-Queue: Gabriel Castro <gabrielmcastro@google.com> Reviewed-by: Srujan Gaddam <srujzs@google.com> Reviewed-by: Nicholas Shahan <nshahan@google.com>
13 lines
448 B
Plaintext
13 lines
448 B
Plaintext
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
part of $LIBRARYNAME;
|
|
|
|
//todo: add @sealed annotation
|
|
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$MIXINS$IMPLEMENTS { $!CLASSMEMBERS }
|
|
|
|
extension $(CLASSNAME)Extension on $CLASSNAME {
|
|
$!EXTENSIONMEMBERS
|
|
}
|