131 lines
4.8 KiB
Dart
131 lines
4.8 KiB
Dart
// Copyright (c) 2013, 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.
|
|
|
|
library analyzer;
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:analyzer/dart/ast/ast.dart';
|
|
import 'package:analyzer/src/error.dart';
|
|
import 'package:analyzer/src/generated/error.dart';
|
|
import 'package:analyzer/src/generated/parser.dart';
|
|
import 'package:analyzer/src/generated/scanner.dart';
|
|
import 'package:analyzer/src/generated/source_io.dart';
|
|
import 'package:analyzer/src/string_source.dart';
|
|
import 'package:path/path.dart' as pathos;
|
|
|
|
export 'package:analyzer/dart/ast/ast.dart';
|
|
export 'package:analyzer/dart/ast/visitor.dart';
|
|
export 'package:analyzer/src/dart/ast/utilities.dart';
|
|
export 'package:analyzer/src/error.dart';
|
|
export 'package:analyzer/src/generated/error.dart';
|
|
export 'package:analyzer/src/generated/utilities_dart.dart';
|
|
|
|
/// Parses a string of Dart code into an AST.
|
|
///
|
|
/// If [name] is passed, it's used in error messages as the name of the code
|
|
/// being parsed.
|
|
///
|
|
/// Throws an [AnalyzerErrorGroup] if any errors occurred, unless
|
|
/// [suppressErrors] is `true`, in which case any errors are discarded.
|
|
///
|
|
/// If [parseFunctionBodies] is [false] then only function signatures will be
|
|
/// parsed.
|
|
CompilationUnit parseCompilationUnit(String contents,
|
|
{String name, bool suppressErrors: false, bool parseFunctionBodies: true}) {
|
|
if (name == null) name = '<unknown source>';
|
|
var source = new StringSource(contents, name);
|
|
return _parseSource(contents, source,
|
|
suppressErrors: suppressErrors, parseFunctionBodies: parseFunctionBodies);
|
|
}
|
|
|
|
/// Parses a Dart file into an AST.
|
|
///
|
|
/// Throws an [AnalyzerErrorGroup] if any errors occurred, unless
|
|
/// [suppressErrors] is `true`, in which case any errors are discarded.
|
|
///
|
|
/// If [parseFunctionBodies] is [false] then only function signatures will be
|
|
/// parsed.
|
|
CompilationUnit parseDartFile(String path,
|
|
{bool suppressErrors: false, bool parseFunctionBodies: true}) {
|
|
String contents = new File(path).readAsStringSync();
|
|
var sourceFactory = new SourceFactory([new FileUriResolver()]);
|
|
|
|
var absolutePath = pathos.absolute(path);
|
|
var source = sourceFactory.forUri(pathos.toUri(absolutePath).toString());
|
|
if (source == null) {
|
|
throw new ArgumentError("Can't get source for path $path");
|
|
}
|
|
if (!source.exists()) {
|
|
throw new ArgumentError("Source $source doesn't exist");
|
|
}
|
|
|
|
return _parseSource(contents, source,
|
|
suppressErrors: suppressErrors, parseFunctionBodies: parseFunctionBodies);
|
|
}
|
|
|
|
/// Parses the script tag and directives in a string of Dart code into an AST.
|
|
///
|
|
/// Stops parsing when the first non-directive is encountered. The rest of the
|
|
/// string will not be parsed.
|
|
///
|
|
/// If [name] is passed, it's used in error messages as the name of the code
|
|
/// being parsed.
|
|
///
|
|
/// Throws an [AnalyzerErrorGroup] if any errors occurred, unless
|
|
/// [suppressErrors] is `true`, in which case any errors are discarded.
|
|
CompilationUnit parseDirectives(String contents,
|
|
{String name, bool suppressErrors: false}) {
|
|
if (name == null) name = '<unknown source>';
|
|
var source = new StringSource(contents, name);
|
|
var errorCollector = new _ErrorCollector();
|
|
var reader = new CharSequenceReader(contents);
|
|
var scanner = new Scanner(source, reader, errorCollector);
|
|
var token = scanner.tokenize();
|
|
var parser = new Parser(source, errorCollector);
|
|
var unit = parser.parseDirectives(token);
|
|
unit.lineInfo = new LineInfo(scanner.lineStarts);
|
|
|
|
if (errorCollector.hasErrors && !suppressErrors) throw errorCollector.group;
|
|
|
|
return unit;
|
|
}
|
|
|
|
/// Converts an AST node representing a string literal into a [String].
|
|
String stringLiteralToString(StringLiteral literal) {
|
|
return literal.stringValue;
|
|
}
|
|
|
|
CompilationUnit _parseSource(String contents, Source source,
|
|
{bool suppressErrors: false, bool parseFunctionBodies: true}) {
|
|
var reader = new CharSequenceReader(contents);
|
|
var errorCollector = new _ErrorCollector();
|
|
var scanner = new Scanner(source, reader, errorCollector);
|
|
var token = scanner.tokenize();
|
|
var parser = new Parser(source, errorCollector)
|
|
..parseFunctionBodies = parseFunctionBodies;
|
|
var unit = parser.parseCompilationUnit(token)
|
|
..lineInfo = new LineInfo(scanner.lineStarts);
|
|
|
|
if (errorCollector.hasErrors && !suppressErrors) throw errorCollector.group;
|
|
|
|
return unit;
|
|
}
|
|
|
|
/// A simple error listener that collects errors into an [AnalysisErrorGroup].
|
|
class _ErrorCollector extends AnalysisErrorListener {
|
|
final _errors = <AnalysisError>[];
|
|
|
|
_ErrorCollector();
|
|
|
|
/// The group of errors collected.
|
|
AnalyzerErrorGroup get group =>
|
|
new AnalyzerErrorGroup.fromAnalysisErrors(_errors);
|
|
|
|
/// Whether any errors where collected.
|
|
bool get hasErrors => !_errors.isEmpty;
|
|
|
|
void onError(AnalysisError error) => _errors.add(error);
|
|
}
|