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

Side by Side Diff: pkg/compiler/lib/src/parser/parser_task.dart

Issue 2675103003: Refactor BackendHelpers to be reusageable with KernelWorldBuilder (Closed)
Patch Set: Updated cf. comments Created 3 years, 10 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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.parser.task; 5 library dart2js.parser.task;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../common/tasks.dart' show CompilerTask; 8 import '../common/tasks.dart' show CompilerTask;
9 import '../compiler.dart' show Compiler; 9 import '../compiler.dart' show Compiler;
10 import '../elements/modelx.dart' show ElementX; 10 import '../elements/modelx.dart' show ElementX;
(...skipping 18 matching lines...) Expand all
29 29
30 Node parseCompilationUnit(Token token) { 30 Node parseCompilationUnit(Token token) {
31 return measure(() { 31 return measure(() {
32 NodeListener listener = 32 NodeListener listener =
33 new NodeListener(const ScannerOptions(), compiler.reporter, null); 33 new NodeListener(const ScannerOptions(), compiler.reporter, null);
34 Parser parser = new Parser(listener); 34 Parser parser = new Parser(listener);
35 try { 35 try {
36 parser.parseUnit(token); 36 parser.parseUnit(token);
37 } on ParserError catch (_) { 37 } on ParserError catch (_) {
38 assert(invariant(compiler.reporter.spanFromToken(token), 38 assert(invariant(compiler.reporter.spanFromToken(token),
39 compiler.compilationFailed)); 39 compiler.compilationFailed));
40 return listener.makeNodeList(0, null, null, '\n'); 40 return listener.makeNodeList(0, null, null, '\n');
41 } 41 }
42 Node result = listener.popNode(); 42 Node result = listener.popNode();
43 assert(listener.nodes.isEmpty); 43 assert(listener.nodes.isEmpty);
44 return result; 44 return result;
45 }); 45 });
46 } 46 }
47 } 47 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/parser/node_listener.dart ('k') | pkg/compiler/lib/src/parser/partial_elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698