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

Side by Side Diff: lib/src/codegen/ast_builder.dart

Issue 1797063002: Resolve obvious deprecation warnings on bleeding edge (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 9 months 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 unified diff | Download patch
OLDNEW
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 import 'package:analyzer/dart/ast/ast.dart';
5 import 'package:analyzer/dart/ast/token.dart'; 6 import 'package:analyzer/dart/ast/token.dart';
6 import 'package:analyzer/src/dart/ast/token.dart'; 7 import 'package:analyzer/src/dart/ast/token.dart';
7 import 'package:analyzer/src/generated/ast.dart';
8 import 'package:analyzer/src/generated/utilities_dart.dart'; 8 import 'package:analyzer/src/generated/utilities_dart.dart';
9 import 'package:logging/logging.dart' as logger; 9 import 'package:logging/logging.dart' as logger;
10 10
11 final _log = new logger.Logger('dev_compiler.ast_builder'); 11 final _log = new logger.Logger('dev_compiler.ast_builder');
12 12
13 // Wrappers around constructors for the dart ast. The AstBuilder class 13 // Wrappers around constructors for the dart ast. The AstBuilder class
14 // provides a higher-level interface, abstracting both from the lexical 14 // provides a higher-level interface, abstracting both from the lexical
15 // details and some of helper classes. The RawAstBuilder class provides 15 // details and some of helper classes. The RawAstBuilder class provides
16 // a low-level wrapper class (below) abstracts from the lexical details 16 // a low-level wrapper class (below) abstracts from the lexical details
17 // but otherwise faithfully mirrors the construction API. 17 // but otherwise faithfully mirrors the construction API.
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 Label l = new Label(s, new Token(TokenType.COLON, 0)); 585 Label l = new Label(s, new Token(TokenType.COLON, 0));
586 return new NamedExpression(l, e); 586 return new NamedExpression(l, e);
587 } 587 }
588 588
589 static VariableDeclarationStatement variableDeclarationStatement( 589 static VariableDeclarationStatement variableDeclarationStatement(
590 VariableDeclarationList varDecl) { 590 VariableDeclarationList varDecl) {
591 var semi = new Token(TokenType.SEMICOLON, 0); 591 var semi = new Token(TokenType.SEMICOLON, 0);
592 return new VariableDeclarationStatement(varDecl, semi); 592 return new VariableDeclarationStatement(varDecl, semi);
593 } 593 }
594 } 594 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698