| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library dart2js.new_js_emitter.model; | 5 library dart2js.new_js_emitter.model; |
| 6 | 6 |
| 7 import '../common.dart'; | |
| 8 import '../constants/values.dart' show | 7 import '../constants/values.dart' show |
| 9 ConstantValue; | 8 ConstantValue; |
| 10 import '../deferred_load.dart' show | 9 import '../deferred_load.dart' show |
| 11 OutputUnit; | 10 OutputUnit; |
| 12 import '../elements/elements.dart' show | 11 import '../elements/elements.dart' show |
| 13 Element; | 12 Element; |
| 14 import '../js/js.dart' as js show | 13 import '../js/js.dart' as js show |
| 15 Expression, | 14 Expression, |
| 16 Literal, | 15 Literal, |
| 17 Name, | 16 Name, |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 functionType: functionType); | 529 functionType: functionType); |
| 531 | 530 |
| 532 bool get isStatic => true; | 531 bool get isStatic => true; |
| 533 } | 532 } |
| 534 | 533 |
| 535 class StaticStubMethod extends StubMethod implements StaticMethod { | 534 class StaticStubMethod extends StubMethod implements StaticMethod { |
| 536 Holder holder; | 535 Holder holder; |
| 537 StaticStubMethod(js.Name name, this.holder, js.Expression code) | 536 StaticStubMethod(js.Name name, this.holder, js.Expression code) |
| 538 : super(name, code); | 537 : super(name, code); |
| 539 } | 538 } |
| OLD | NEW |