| 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 '../common.dart'; |
| 7 import '../constants/expressions.dart'; | 8 import '../constants/expressions.dart'; |
| 8 import '../dart_types.dart'; | 9 import '../dart_types.dart'; |
| 9 import '../diagnostics/spannable.dart' show | |
| 10 Spannable, | |
| 11 SpannableAssertionFailure; | |
| 12 import '../tree/tree.dart'; | 10 import '../tree/tree.dart'; |
| 13 import '../elements/elements.dart'; | 11 import '../elements/elements.dart'; |
| 14 import '../universe/call_structure.dart' show | 12 import '../universe/call_structure.dart' show |
| 15 CallStructure; | 13 CallStructure; |
| 16 import '../universe/selector.dart' show | 14 import '../universe/selector.dart' show |
| 17 Selector; | 15 Selector; |
| 18 | 16 |
| 19 import 'operators.dart'; | 17 import 'operators.dart'; |
| 20 import 'send_resolver.dart'; | 18 import 'send_resolver.dart'; |
| 21 import 'send_structure.dart'; | 19 import 'send_structure.dart'; |
| (...skipping 5800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5822 /// C() : this._(42); | 5820 /// C() : this._(42); |
| 5823 /// } | 5821 /// } |
| 5824 /// | 5822 /// |
| 5825 R errorUnresolvedThisConstructorInvoke( | 5823 R errorUnresolvedThisConstructorInvoke( |
| 5826 Send node, | 5824 Send node, |
| 5827 Element element, | 5825 Element element, |
| 5828 NodeList arguments, | 5826 NodeList arguments, |
| 5829 Selector selector, | 5827 Selector selector, |
| 5830 A arg); | 5828 A arg); |
| 5831 } | 5829 } |
| OLD | NEW |