blob: c680a31afb216f4c300362f331295e36805aa861 [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of scanner;
class ParserTask extends CompilerTask {
ParserTask(Compiler compiler) : super(compiler);
String get name => 'Parser';
Node parse(ElementX element) {
return measure(() => element.parseNode(compiler));
}
Node parseCompilationUnit(Token token) {
return measure(() {
NodeListener listener = new NodeListener(compiler, null);
Parser parser = new Parser(listener);
try {
parser.parseUnit(token);
} on ParserError catch(_) {
assert(invariant(token, compiler.compilationFailed));
return listener.makeNodeList(0, null, null, '\n');
}
Node result = listener.popNode();
assert(listener.nodes.isEmpty);
return result;
});
}
}