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

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

Issue 967933005: rename ddc -> dev_compiler, fixes #84 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 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
« no previous file with comments | « lib/src/checker/rules.dart ('k') | lib/src/codegen/code_generator.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 library ddc.src.codegen.ast_builder; 5 library dev_compiler.src.codegen.ast_builder;
6 6
7 import 'package:analyzer/src/generated/ast.dart'; 7 import 'package:analyzer/src/generated/ast.dart';
8 import 'package:analyzer/src/generated/scanner.dart'; 8 import 'package:analyzer/src/generated/scanner.dart';
9 import 'package:analyzer/src/generated/utilities_dart.dart'; 9 import 'package:analyzer/src/generated/utilities_dart.dart';
10 import 'package:logging/logging.dart' as logger; 10 import 'package:logging/logging.dart' as logger;
11 11
12 final _log = new logger.Logger('ddc.ast_builder'); 12 final _log = new logger.Logger('dev_compiler.ast_builder');
13 13
14 // Wrappers around constructors for the dart ast. The AstBuilder class 14 // Wrappers around constructors for the dart ast. The AstBuilder class
15 // provides a higher-level interface, abstracting both from the lexical 15 // provides a higher-level interface, abstracting both from the lexical
16 // details and some of helper classes. The RawAstBuilder class provides 16 // details and some of helper classes. The RawAstBuilder class provides
17 // a low-level wrapper class (below) abstracts from the lexical details 17 // a low-level wrapper class (below) abstracts from the lexical details
18 // but otherwise faithfully mirrors the construction API. 18 // but otherwise faithfully mirrors the construction API.
19 class AstBuilder { 19 class AstBuilder {
20 static SimpleIdentifier identifierFromString(String name) { 20 static SimpleIdentifier identifierFromString(String name) {
21 return RawAstBuilder.identifierFromString(name); 21 return RawAstBuilder.identifierFromString(name);
22 } 22 }
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 382
383 static NamedExpression namedParameter(Identifier s, Expression e) { 383 static NamedExpression namedParameter(Identifier s, Expression e) {
384 return namedExpression(s, e); 384 return namedExpression(s, e);
385 } 385 }
386 386
387 static NamedExpression namedExpression(Identifier s, Expression e) { 387 static NamedExpression namedExpression(Identifier s, Expression e) {
388 Label l = new Label(s, new Token(TokenType.COLON, 0)); 388 Label l = new Label(s, new Token(TokenType.COLON, 0));
389 return new NamedExpression(l, e); 389 return new NamedExpression(l, e);
390 } 390 }
391 } 391 }
OLDNEW
« no previous file with comments | « lib/src/checker/rules.dart ('k') | lib/src/codegen/code_generator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698