| 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 '../dart_types.dart'; | 8 import '../dart_types.dart'; |
| 9 import '../diagnostics/spannable.dart' show | 9 import '../diagnostics/spannable.dart' show |
| 10 Spannable, | 10 Spannable, |
| 11 SpannableAssertionFailure; | 11 SpannableAssertionFailure; |
| 12 import '../tree/tree.dart'; | 12 import '../tree/tree.dart'; |
| 13 import '../elements/elements.dart'; | 13 import '../elements/elements.dart'; |
| 14 import '../universe/universe.dart'; | 14 import '../universe/call_structure.dart' show |
| 15 CallStructure; |
| 16 import '../universe/selector.dart' show |
| 17 Selector; |
| 15 | 18 |
| 16 import 'operators.dart'; | 19 import 'operators.dart'; |
| 17 import 'send_resolver.dart'; | 20 import 'send_resolver.dart'; |
| 18 import 'send_structure.dart'; | 21 import 'send_structure.dart'; |
| 19 import 'tree_elements.dart'; | 22 import 'tree_elements.dart'; |
| 20 | 23 |
| 21 part 'semantic_visitor_mixins.dart'; | 24 part 'semantic_visitor_mixins.dart'; |
| 22 | 25 |
| 23 /// Mixin that couples a [SendResolverMixin] to a [SemanticSendVisitor] in a | 26 /// Mixin that couples a [SendResolverMixin] to a [SemanticSendVisitor] in a |
| 24 /// [Visitor]. | 27 /// [Visitor]. |
| (...skipping 5820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5845 /// C() : this._(42); | 5848 /// C() : this._(42); |
| 5846 /// } | 5849 /// } |
| 5847 /// | 5850 /// |
| 5848 R errorUnresolvedThisConstructorInvoke( | 5851 R errorUnresolvedThisConstructorInvoke( |
| 5849 Send node, | 5852 Send node, |
| 5850 Element element, | 5853 Element element, |
| 5851 NodeList arguments, | 5854 NodeList arguments, |
| 5852 Selector selector, | 5855 Selector selector, |
| 5853 A arg); | 5856 A arg); |
| 5854 } | 5857 } |
| OLD | NEW |