OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 part of dart2js.js_emitter; | 5 part of dart2js.js_emitter; |
6 | 6 |
7 /// This class should morph into something that makes it easy to build | 7 /// This class should morph into something that makes it easy to build |
8 /// JavaScript representations of libraries, class-sides, and instance-sides. | 8 /// JavaScript representations of libraries, class-sides, and instance-sides. |
9 /// Initially, it is just a placeholder for code that is moved from | 9 /// Initially, it is just a placeholder for code that is moved from |
10 /// [CodeEmitterTask]. | 10 /// [CodeEmitterTask]. |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 assert(code != null); | 633 assert(code != null); |
634 assert(needsStubs != null); | 634 assert(needsStubs != null); |
635 assert(canTearOff != null); | 635 assert(canTearOff != null); |
636 assert(isClosure != null); | 636 assert(isClosure != null); |
637 assert(tearOffName != null || !canTearOff); | 637 assert(tearOffName != null || !canTearOff); |
638 assert(canBeReflected != null); | 638 assert(canBeReflected != null); |
639 assert(canBeApplied != null); | 639 assert(canBeApplied != null); |
640 assert(needStructuredInfo != null); | 640 assert(needStructuredInfo != null); |
641 } | 641 } |
642 } | 642 } |
OLD | NEW |