Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 5 part of $LIBRARYNAME; | 7 part of $LIBRARYNAME; |
| 8 | |
| 6 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS { | 9 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS { |
| 7 $if DARTIUM | 10 $!MEMBERS |
|
Alan Knight
2017/02/03 18:06:37
Note: this is bogus. The file is a new addition, a
| |
| 8 List<int> __data; | 11 $if DART2JS |
| 9 | 12 @DomName('Selection.toString') |
| 10 List<int> get data { | 13 @DocsEditable() |
| 11 if (__data == null) { | 14 String toString() native; |
| 12 __data = _data; | |
| 13 } | |
| 14 return __data; | |
| 15 } | |
| 16 $endif | 15 $endif |
| 17 | |
| 18 $!MEMBERS | |
| 19 } | 16 } |
| OLD | NEW |