| 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.resolution.send_structure; | 5 library dart2js.resolution.send_structure; |
| 6 | 6 |
| 7 import '../common.dart'; | 7 import '../common.dart'; |
| 8 import '../constants/expressions.dart'; | 8 import '../constants/expressions.dart'; |
| 9 import '../dart_types.dart'; | 9 import '../elements/resolution_types.dart'; |
| 10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
| 11 import '../resolution/tree_elements.dart' show TreeElements; | 11 import '../resolution/tree_elements.dart' show TreeElements; |
| 12 import '../tree/tree.dart'; | 12 import '../tree/tree.dart'; |
| 13 import '../universe/call_structure.dart' show CallStructure; | 13 import '../universe/call_structure.dart' show CallStructure; |
| 14 import '../universe/selector.dart' show Selector; | 14 import '../universe/selector.dart' show Selector; |
| 15 import 'access_semantics.dart'; | 15 import 'access_semantics.dart'; |
| 16 import 'operators.dart'; | 16 import 'operators.dart'; |
| 17 import 'semantic_visitor.dart'; | 17 import 'semantic_visitor.dart'; |
| 18 | 18 |
| 19 /// Interface for the structure of the semantics of a [Send] or [NewExpression] | 19 /// Interface for the structure of the semantics of a [Send] or [NewExpression] |
| (...skipping 2493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2513 ThisConstructorInvokeStructure( | 2513 ThisConstructorInvokeStructure( |
| 2514 this.node, this.constructor, this.callStructure); | 2514 this.node, this.constructor, this.callStructure); |
| 2515 | 2515 |
| 2516 R dispatch(SemanticDeclarationVisitor<R, A> visitor, A arg) { | 2516 R dispatch(SemanticDeclarationVisitor<R, A> visitor, A arg) { |
| 2517 return visitor.visitThisConstructorInvoke( | 2517 return visitor.visitThisConstructorInvoke( |
| 2518 node, constructor, node.argumentsNode, callStructure, arg); | 2518 node, constructor, node.argumentsNode, callStructure, arg); |
| 2519 } | 2519 } |
| 2520 | 2520 |
| 2521 bool get isConstructorInvoke => true; | 2521 bool get isConstructorInvoke => true; |
| 2522 } | 2522 } |
| OLD | NEW |