OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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.semantics_visitor; | 5 library dart2js.semantics_visitor; |
6 | 6 |
7 import '../constants/expressions.dart'; | 7 import '../constants/expressions.dart'; |
8 import '../dart2jslib.dart' show invariant, MessageKind; | 8 import '../dart2jslib.dart' show invariant, MessageKind; |
9 import '../dart_types.dart'; | 9 import '../dart_types.dart'; |
10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
11 import '../helpers/helpers.dart'; | |
12 import '../tree/tree.dart'; | 11 import '../tree/tree.dart'; |
13 import '../universe/universe.dart'; | 12 import '../universe/universe.dart'; |
14 import '../util/util.dart' show Spannable, SpannableAssertionFailure; | 13 import '../util/util.dart' show Spannable, SpannableAssertionFailure; |
15 import 'access_semantics.dart'; | 14 import 'access_semantics.dart'; |
16 import 'operators.dart'; | 15 import 'operators.dart'; |
17 import 'resolution.dart'; | 16 import 'resolution.dart'; |
18 import 'send_structure.dart'; | 17 import 'send_structure.dart'; |
19 | 18 |
20 part 'semantic_visitor_mixins.dart'; | 19 part 'semantic_visitor_mixins.dart'; |
21 part 'send_resolver.dart'; | 20 part 'send_resolver.dart'; |
(...skipping 4598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4620 /// C() : this._(42); | 4619 /// C() : this._(42); |
4621 /// } | 4620 /// } |
4622 /// | 4621 /// |
4623 R errorUnresolvedThisConstructorInvoke( | 4622 R errorUnresolvedThisConstructorInvoke( |
4624 Send node, | 4623 Send node, |
4625 Element element, | 4624 Element element, |
4626 NodeList arguments, | 4625 NodeList arguments, |
4627 Selector selector, | 4626 Selector selector, |
4628 A arg); | 4627 A arg); |
4629 } | 4628 } |
OLD | NEW |