| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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.kernel.env; | 5 library dart2js.kernel.env; |
| 6 | 6 |
| 7 import 'package:kernel/ast.dart' as ir; | 7 import 'package:kernel/ast.dart' as ir; |
| 8 import 'package:kernel/clone.dart'; | 8 import 'package:kernel/clone.dart'; |
| 9 import 'package:kernel/type_algebra.dart'; | 9 import 'package:kernel/type_algebra.dart'; |
| 10 | 10 |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 } | 586 } |
| 587 } | 587 } |
| 588 return _constant; | 588 return _constant; |
| 589 } | 589 } |
| 590 | 590 |
| 591 @override | 591 @override |
| 592 FieldData copy() { | 592 FieldData copy() { |
| 593 return new FieldDataImpl(node, definition); | 593 return new FieldDataImpl(node, definition); |
| 594 } | 594 } |
| 595 } | 595 } |
| 596 |
| 597 class TypedefData { |
| 598 final ir.Typedef node; |
| 599 final TypedefEntity element; |
| 600 final TypedefType rawType; |
| 601 |
| 602 TypedefData(this.node, this.element, this.rawType); |
| 603 } |
| OLD | NEW |