| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to | |
| 6 // significant change. Please see the README file for more information. | |
| 7 | |
| 8 library engine.constant; | 5 library engine.constant; |
| 9 | 6 |
| 10 import 'dart:collection'; | 7 import 'dart:collection'; |
| 11 | 8 |
| 12 import 'package:analyzer/src/generated/engine.dart'; | 9 import 'package:analyzer/src/generated/engine.dart'; |
| 13 import 'package:analyzer/src/generated/utilities_general.dart'; | 10 import 'package:analyzer/src/generated/utilities_general.dart'; |
| 14 import 'package:analyzer/src/task/dart.dart'; | 11 import 'package:analyzer/src/task/dart.dart'; |
| 15 | 12 |
| 16 import 'ast.dart'; | 13 import 'ast.dart'; |
| 17 import 'element.dart'; | 14 import 'element.dart'; |
| (...skipping 5252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5270 return BoolState.from(_element == rightElement); | 5267 return BoolState.from(_element == rightElement); |
| 5271 } else if (rightOperand is DynamicState) { | 5268 } else if (rightOperand is DynamicState) { |
| 5272 return BoolState.UNKNOWN_VALUE; | 5269 return BoolState.UNKNOWN_VALUE; |
| 5273 } | 5270 } |
| 5274 return BoolState.FALSE_STATE; | 5271 return BoolState.FALSE_STATE; |
| 5275 } | 5272 } |
| 5276 | 5273 |
| 5277 @override | 5274 @override |
| 5278 String toString() => _element == null ? "-unknown-" : _element.name; | 5275 String toString() => _element == null ? "-unknown-" : _element.name; |
| 5279 } | 5276 } |
| OLD | NEW |