| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 part of $LIBRARYNAME; | 7 part of $LIBRARYNAME; |
| 8 | 8 |
| 9 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { | 9 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { |
| 10 factory $CLASSNAME(String data) => document.$dom_createTextNode(data); |
| 10 $!MEMBERS | 11 $!MEMBERS |
| 11 | 12 |
| 12 $if DART2JS | 13 $if DART2JS |
| 13 @Creates('Null') // Set from Dart code; does not instantiate a native type. | 14 @Creates('Null') // Set from Dart code; does not instantiate a native type. |
| 14 $endif | 15 $endif |
| 15 StreamSubscription _textBinding; | 16 StreamSubscription _textBinding; |
| 16 | 17 |
| 17 @Experimental | 18 @Experimental |
| 18 void bind(String name, model, String path) { | 19 void bind(String name, model, String path) { |
| 19 if (name != 'text') { | 20 if (name != 'text') { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 40 _textBinding.cancel(); | 41 _textBinding.cancel(); |
| 41 _textBinding = null; | 42 _textBinding = null; |
| 42 } | 43 } |
| 43 | 44 |
| 44 @Experimental | 45 @Experimental |
| 45 void unbindAll() { | 46 void unbindAll() { |
| 46 unbind('text'); | 47 unbind('text'); |
| 47 super.unbindAll(); | 48 super.unbindAll(); |
| 48 } | 49 } |
| 49 } | 50 } |
| OLD | NEW |