Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Unified Diff: pkg/analyzer/lib/src/task/strong/info.dart

Issue 1524893002: Fix imports within the analyzer package (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/src/task/strong/checker.dart ('k') | pkg/analyzer/lib/src/task/strong_mode.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/task/strong/info.dart
diff --git a/pkg/analyzer/lib/src/task/strong/info.dart b/pkg/analyzer/lib/src/task/strong/info.dart
index 8b379620df890106bc6b4b5ef66da293132c86c8..cf4f8226714d4f5000d77144aabbec8cde263ec4 100644
--- a/pkg/analyzer/lib/src/task/strong/info.dart
+++ b/pkg/analyzer/lib/src/task/strong/info.dart
@@ -8,8 +8,10 @@
// refactored to fit into analyzer.
library analyzer.src.task.strong.info;
+import 'package:analyzer/dart/element/element.dart';
+import 'package:analyzer/dart/element/type.dart';
+import 'package:analyzer/src/dart/element/type.dart';
import 'package:analyzer/src/generated/ast.dart';
-import 'package:analyzer/src/generated/element.dart';
import 'package:analyzer/src/generated/error.dart';
import 'package:analyzer/src/generated/type_system.dart';
@@ -83,8 +85,7 @@ abstract class CoercionInfo extends StaticInfo {
abstract class DownCast extends CoercionInfo {
Cast _cast;
- DownCast._internal(
- TypeSystem rules, Expression expression, this._cast)
+ DownCast._internal(TypeSystem rules, Expression expression, this._cast)
: super(rules, expression) {
assert(_cast.toType != baseType &&
_cast.fromType == baseType &&
@@ -183,8 +184,7 @@ abstract class DownCast extends CoercionInfo {
// A down cast to a non-ground type. These behave differently from standard
// Dart and may be more likely to fail at runtime.
class DownCastComposite extends DownCast {
- DownCastComposite(
- TypeSystem rules, Expression expression, Cast cast)
+ DownCastComposite(TypeSystem rules, Expression expression, Cast cast)
: super._internal(rules, expression, cast);
@override
@@ -276,8 +276,7 @@ class InferredType extends InferredTypeBase {
// An inferred type for a non-literal allocation site.
class InferredTypeAllocation extends InferredTypeBase {
- InferredTypeAllocation(
- TypeSystem rules, Expression expression, DartType type)
+ InferredTypeAllocation(TypeSystem rules, Expression expression, DartType type)
: super._internal(rules, expression, type);
@override
@@ -303,8 +302,7 @@ abstract class InferredTypeBase extends CoercionInfo {
// An inferred type for a closure expression
class InferredTypeClosure extends InferredTypeBase {
- InferredTypeClosure(
- TypeSystem rules, Expression expression, DartType type)
+ InferredTypeClosure(TypeSystem rules, Expression expression, DartType type)
: super._internal(rules, expression, type);
@override
@@ -313,8 +311,7 @@ class InferredTypeClosure extends InferredTypeBase {
// An inferred type for a literal expression.
class InferredTypeLiteral extends InferredTypeBase {
- InferredTypeLiteral(
- TypeSystem rules, Expression expression, DartType type)
+ InferredTypeLiteral(TypeSystem rules, Expression expression, DartType type)
: super._internal(rules, expression, type);
@override
@@ -391,8 +388,8 @@ abstract class InvalidOverride extends StaticError {
class InvalidParameterDeclaration extends StaticError {
final DartType expectedType;
- InvalidParameterDeclaration(TypeSystem rules,
- FormalParameter declaration, this.expectedType)
+ InvalidParameterDeclaration(
+ TypeSystem rules, FormalParameter declaration, this.expectedType)
: super(declaration);
@override List<Object> get arguments => [node, expectedType];
@@ -539,8 +536,7 @@ class StaticTypeError extends StaticError {
final DartType expectedType;
String reason = null;
- StaticTypeError(
- TypeSystem rules, Expression expression, this.expectedType,
+ StaticTypeError(TypeSystem rules, Expression expression, this.expectedType,
{this.reason})
: baseType = expression.staticType ?? DynamicTypeImpl.instance,
super(expression);
@@ -548,7 +544,7 @@ class StaticTypeError extends StaticError {
@override List<Object> get arguments => [node, baseType, expectedType];
@override String get message =>
'Type check failed: {0} ({1}) is not of type {2}' +
- ((reason == null) ? '' : ' because $reason');
+ ((reason == null) ? '' : ' because $reason');
@override
String get name => 'STRONG_MODE_STATIC_TYPE_ERROR';
@@ -565,8 +561,7 @@ class StaticTypeError extends StaticError {
//
// TODO(vsm,leafp): Remove this.
class UninferredClosure extends DownCast {
- UninferredClosure(
- TypeSystem rules, FunctionExpression expression, Cast cast)
+ UninferredClosure(TypeSystem rules, FunctionExpression expression, Cast cast)
: super._internal(rules, expression, cast);
@override
« no previous file with comments | « pkg/analyzer/lib/src/task/strong/checker.dart ('k') | pkg/analyzer/lib/src/task/strong_mode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698