blob: a91eeffc5bd7f5930f069af82a37232db054bbf8 [file] [log] [blame]
// Copyright (c) 2012, 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 mock_compiler;
import "package:expect/expect.dart";
import 'dart:async';
import 'dart:collection';
import '../../../sdk/lib/_internal/compiler/compiler.dart' as api;
import '../../../sdk/lib/_internal/compiler/implementation/elements/elements.dart';
import '../../../sdk/lib/_internal/compiler/implementation/resolution/resolution.dart';
import '../../../sdk/lib/_internal/compiler/implementation/source_file.dart';
import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart';
import '../../../sdk/lib/_internal/compiler/implementation/util/util.dart';
import 'parser_helper.dart';
import '../../../sdk/lib/_internal/compiler/implementation/elements/modelx.dart'
show ElementX,
LibraryElementX,
ErroneousElementX,
FunctionElementX;
import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart'
hide TreeElementMapping;
import '../../../sdk/lib/_internal/compiler/implementation/deferred_load.dart'
show DeferredLoadTask,
OutputUnit;
class WarningMessage {
Spannable node;
Message message;
WarningMessage(this.node, this.message);
toString() => message.toString();
}
const String DEFAULT_HELPERLIB = r'''
wrapException(x) { return x; }
iae(x) { throw x; } ioore(x) { throw x; }
guard$array(x) { return x; }
guard$num(x) { return x; }
guard$string(x) { return x; }
guard$stringOrArray(x) { return x; }
makeLiteralMap(List keyValuePairs) {}
setRuntimeTypeInfo(a, b) {}
getRuntimeTypeInfo(a) {}
stringTypeCheck(x) {}
stringTypeCast(x) {}
propertyTypeCast(x) {}
boolConversionCheck(x) {}
abstract class JavaScriptIndexingBehavior {}
class JSInvocationMirror {}
class BoundClosure extends Closure {
var self;
var target;
var receiver;
}
class Closure implements Function {}
class Null {}
class Dynamic_ {}
class LinkedHashMap {}
class ConstantMap {}
class TypeImpl {}
S() {}
throwCyclicInit() {}
throwExpression(e) {}
unwrapException(e) {}
assertHelper(a) {}
isJsIndexable(a, b) {}
createRuntimeType(a) {}
createInvocationMirror(a0, a1, a2, a3, a4, a5) {}
throwNoSuchMethod(obj, name, arguments, expectedArgumentNames) {}
throwAbstractClassInstantiationError(className) {}
boolTypeCheck(value) {}
propertyTypeCheck(value, property) {}
interceptedTypeCheck(value, property) {}
functionSubtypeCast(Object object, String signatureName,
String contextName, var context) {}
checkFunctionSubtype(var target, String signatureName,
String contextName, var context,
var typeArguments) {}
computeSignature(var signature, var context, var contextName) {}
getRuntimeTypeArguments(target, substitutionName) {}
voidTypeCheck(value) {}''';
const String FOREIGN_LIBRARY = r'''
dynamic JS(String typeDescription, String codeTemplate,
[var arg0, var arg1, var arg2, var arg3, var arg4, var arg5, var arg6,
var arg7, var arg8, var arg9, var arg10, var arg11]) {}''';
const String DEFAULT_INTERCEPTORSLIB = r'''
class Interceptor {
toString() {}
bool operator==(other) => identical(this, other);
get hashCode => throw "Interceptor.hashCode not implemented.";
noSuchMethod(im) { throw im; }
}
abstract class JSIndexable {
get length;
operator[](index);
}
abstract class JSMutableIndexable extends JSIndexable {}
class JSArray<E> extends Interceptor implements List<E>, JSIndexable {
JSArray();
factory JSArray.typed(a) => a;
var length;
operator[](index) => this[index];
operator[]=(index, value) { this[index] = value; }
add(value) { this[length + 1] = value; }
removeAt(index) {}
insert(index, value) {}
removeLast() {}
}
class JSMutableArray extends JSArray implements JSMutableIndexable {}
class JSFixedArray extends JSMutableArray {}
class JSExtendableArray extends JSMutableArray {}
class JSString extends Interceptor implements String, JSIndexable {
var length;
operator[](index) {}
toString() {}
operator+(other) => this;
}
class JSPositiveInt extends JSInt {}
class JSUInt32 extends JSPositiveInt {}
class JSUInt31 extends JSUInt32 {}
class JSNumber extends Interceptor implements num {
// All these methods return a number to please type inferencing.
operator-() => (this is JSInt) ? 42 : 42.2;
operator +(other) => (this is JSInt) ? 42 : 42.2;
operator -(other) => (this is JSInt) ? 42 : 42.2;
operator ~/(other) => _tdivFast(other);
operator /(other) => (this is JSInt) ? 42 : 42.2;
operator *(other) => (this is JSInt) ? 42 : 42.2;
operator %(other) => (this is JSInt) ? 42 : 42.2;
operator <<(other) => _shlPositive(other);
operator >>(other) {
return _shrBothPositive(other) + _shrReceiverPositive(other) +
_shrOtherPositive(other);
}
operator |(other) => 42;
operator &(other) => 42;
operator ^(other) => 42;
operator >(other) => true;
operator >=(other) => true;
operator <(other) => true;
operator <=(other) => true;
operator ==(other) => true;
get hashCode => throw "JSNumber.hashCode not implemented.";
// We force side effects on _tdivFast to mimic the shortcomings of
// the effect analysis: because the `_tdivFast` implementation of
// the core library has calls that may not already be analyzed,
// the analysis will conclude that `_tdivFast` may have side
// effects.
_tdivFast(other) => new List()..length = 42;
_shlPositive(other) => 42;
_shrBothPositive(other) => 42;
_shrReceiverPositive(other) => 42;
_shrOtherPositive(other) => 42;
abs() => (this is JSInt) ? 42 : 42.2;
remainder(other) => (this is JSInt) ? 42 : 42.2;
truncate() => 42;
}
class JSInt extends JSNumber implements int {
}
class JSDouble extends JSNumber implements double {
}
class JSNull extends Interceptor {
bool operator==(other) => identical(null, other);
get hashCode => throw "JSNull.hashCode not implemented.";
String toString() => 'Null';
Type get runtimeType => null;
}
class JSBool extends Interceptor implements bool {
}
class JSFunction extends Interceptor implements Function {
}
class ObjectInterceptor {
}
getInterceptor(x) {}
getNativeInterceptor(x) {}
var dispatchPropertyName;
var mapTypeToInterceptor;
getDispatchProperty(o) {}
initializeDispatchProperty(f,p,i) {}
initializeDispatchPropertyCSP(f,p,i) {}
''';
const String DEFAULT_CORELIB = r'''
print(var obj) {}
abstract class num {}
abstract class int extends num { }
abstract class double extends num {
static var NAN = 0;
static parse(s) {}
}
class bool {}
class String implements Pattern {}
class Object {
const Object();
operator ==(other) { return true; }
get hashCode => throw "Object.hashCode not implemented.";
String toString() { return null; }
noSuchMethod(im) { throw im; }
}
abstract class StackTrace {}
class Type {}
class Function {}
class List<E> {
var length;
List([length]);
List.filled(length, element);
}
abstract class Map<K,V> {}
class DateTime {
DateTime(year);
DateTime.utc(year);
}
abstract class Pattern {}
bool identical(Object a, Object b) { return true; }
const proxy = 0;''';
const String DEFAULT_ISOLATE_HELPERLIB = r'''
var startRootIsolate;
var _currentIsolate;
var _callInIsolate;
class _WorkerBase {}''';
class MockCompiler extends Compiler {
api.DiagnosticHandler diagnosticHandler;
List<WarningMessage> warnings;
List<WarningMessage> errors;
List<WarningMessage> hints;
List<WarningMessage> infos;
final Map<String, SourceFile> sourceFiles;
Node parsedTree;
MockCompiler({String coreSource: DEFAULT_CORELIB,
String helperSource: DEFAULT_HELPERLIB,
String interceptorsSource: DEFAULT_INTERCEPTORSLIB,
String isolateHelperSource: DEFAULT_ISOLATE_HELPERLIB,
bool enableTypeAssertions: false,
bool enableMinification: false,
bool enableConcreteTypeInference: false,
int maxConcreteTypeSize: 5,
bool disableTypeInference: false,
bool analyzeAll: false,
bool analyzeOnly: false,
bool emitJavaScript: true,
bool preserveComments: false,
// Our unit tests check code generation output that is
// affected by inlining support.
bool disableInlining: true})
: warnings = [], errors = [], hints = [], infos = [],
sourceFiles = new Map<String, SourceFile>(),
super(enableTypeAssertions: enableTypeAssertions,
enableMinification: enableMinification,
enableConcreteTypeInference: enableConcreteTypeInference,
maxConcreteTypeSize: maxConcreteTypeSize,
disableTypeInferenceFlag: disableTypeInference,
analyzeAllFlag: analyzeAll,
analyzeOnly: analyzeOnly,
emitJavaScript: emitJavaScript,
preserveComments: preserveComments) {
coreLibrary = createLibrary("core", coreSource);
// We need to set the assert method to avoid calls with a 'null'
// target being interpreted as a call to assert.
jsHelperLibrary = createLibrary("helper", helperSource);
foreignLibrary = createLibrary("foreign", FOREIGN_LIBRARY);
interceptorsLibrary = createLibrary("interceptors", interceptorsSource);
isolateHelperLibrary = createLibrary("isolate_helper", isolateHelperSource);
// Set up the library imports.
importHelperLibrary(coreLibrary);
libraryLoader.importLibrary(jsHelperLibrary, coreLibrary, null);
libraryLoader.importLibrary(foreignLibrary, coreLibrary, null);
libraryLoader.importLibrary(interceptorsLibrary, coreLibrary, null);
libraryLoader.importLibrary(isolateHelperLibrary, coreLibrary, null);
assertMethod = jsHelperLibrary.find('assertHelper');
identicalFunction = coreLibrary.find('identical');
mainApp = mockLibrary(this, "");
initializeSpecialClasses();
// We need to make sure the Object class is resolved. When registering a
// dynamic invocation the ArgumentTypesRegistry eventually iterates over
// the interfaces of the Object class which would be 'null' if the class
// wasn't resolved.
objectClass.ensureResolved(this);
this.disableInlining = disableInlining;
deferredLoadTask = new MockDeferredLoadTask(this);
}
/**
* Registers the [source] with [uri] making it possible load [source] as a
* library.
*/
void registerSource(Uri uri, String source) {
sourceFiles[uri.toString()] = new MockFile(source);
}
/**
* Used internally to create a library from a source text. The created library
* is fixed to export its top-level declarations.
*/
LibraryElement createLibrary(String name, String source) {
Uri uri = new Uri(scheme: "dart", path: name);
var script = new Script(uri, new MockFile(source));
var library = new LibraryElementX(script);
library.libraryTag = new LibraryName(null, null, null);
parseScript(source, library);
library.setExports(library.localScope.values.toList());
registerSource(uri, source);
libraries.putIfAbsent(uri.toString(), () => library);
return library;
}
void reportWarning(Node node, var message) {
if (message is! Message) message = message.message;
warnings.add(new WarningMessage(node, message));
reportDiagnostic(spanFromNode(node),
'Warning: $message', api.Diagnostic.WARNING);
}
void reportError(Spannable node,
MessageKind errorCode,
[Map arguments = const {}]) {
Message message = errorCode.message(arguments);
errors.add(new WarningMessage(node, message));
reportDiagnostic(spanFromSpannable(node), '$message', api.Diagnostic.ERROR);
}
void reportInfo(Spannable node,
MessageKind errorCode,
[Map arguments = const {}]) {
Message message = errorCode.message(arguments);
infos.add(new WarningMessage(node, message));
reportDiagnostic(spanFromSpannable(node), '$message', api.Diagnostic.INFO);
}
void reportHint(Spannable node,
MessageKind errorCode,
[Map arguments = const {}]) {
Message message = errorCode.message(arguments);
hints.add(new WarningMessage(node, message));
reportDiagnostic(spanFromSpannable(node), '$message', api.Diagnostic.HINT);
}
void reportFatalError(Spannable node,
MessageKind errorCode,
[Map arguments = const {}]) {
reportError(node, errorCode, arguments);
}
void reportMessage(SourceSpan span, var message, api.Diagnostic kind) {
var diagnostic = new WarningMessage(null, message.message);
if (kind == api.Diagnostic.ERROR) {
errors.add(diagnostic);
} else if (kind == api.Diagnostic.WARNING) {
warnings.add(diagnostic);
} else if (kind == api.Diagnostic.INFO) {
infos.add(diagnostic);
} else if (kind == api.Diagnostic.HINT) {
hints.add(diagnostic);
}
reportDiagnostic(span, "$message", kind);
}
void reportDiagnostic(SourceSpan span, String message, api.Diagnostic kind) {
if (diagnosticHandler != null) {
if (span != null) {
diagnosticHandler(span.uri, span.begin, span.end, message, kind);
} else {
diagnosticHandler(null, null, null, message, kind);
}
}
}
bool get compilationFailed => !errors.isEmpty;
void clearMessages() {
warnings = [];
errors = [];
hints = [];
infos = [];
}
CollectingTreeElements resolveStatement(String text) {
parsedTree = parseStatement(text);
return resolveNodeStatement(parsedTree, mainApp);
}
TreeElementMapping resolveNodeStatement(Node tree, Element element) {
ResolverVisitor visitor =
new ResolverVisitor(this, element, new CollectingTreeElements(element));
if (visitor.scope is LibraryScope) {
visitor.scope = new MethodScope(visitor.scope, element);
}
visitor.visit(tree);
visitor.scope = new LibraryScope(element.getLibrary());
return visitor.mapping;
}
resolverVisitor() {
Element mockElement =
new FunctionElementX('', ElementKind.FUNCTION, Modifiers.EMPTY,
mainApp.entryCompilationUnit, false);
ResolverVisitor visitor =
new ResolverVisitor(this, mockElement,
new CollectingTreeElements(mockElement));
visitor.scope = new MethodScope(visitor.scope, mockElement);
return visitor;
}
parseScript(String text, [LibraryElement library]) {
if (library == null) library = mainApp;
parseUnit(text, this, library, registerSource);
}
Future scanBuiltinLibraries() {
// Do nothing. The mock core library is already handled in the constructor.
return new Future.value();
}
Future<LibraryElement> scanBuiltinLibrary(String name) {
// Do nothing. The mock core library is already handled in the constructor.
return new Future.value();
}
Uri translateResolvedUri(LibraryElement importingLibrary,
Uri resolvedUri, Node node) => resolvedUri;
// The mock library doesn't need any patches.
Uri resolvePatchUri(String dartLibraryName) => null;
Future<Script> readScript(Uri uri, [Element element, Node node]) {
SourceFile sourceFile = sourceFiles[uri.toString()];
if (sourceFile == null) throw new ArgumentError(uri);
return new Future.value(new Script(uri, sourceFile));
}
Element lookupElementIn(ScopeContainerElement container, name) {
Element element = container.localLookup(name);
return element != null
? element
: new ErroneousElementX(null, null, name, container);
}
}
/// A function the checks [message]. If the check fails or if [message] is
/// `null`, an error string is returned. Otherwise `null` is returned.
typedef String CheckMessage(Message message);
CheckMessage checkMessage(MessageKind kind, Map arguments) {
return (Message message) {
if (message == null) return '$kind';
if (message.kind != kind) return 'Expected message $kind, found $message.';
for (var key in arguments.keys) {
if (!message.arguments.containsKey(key)) {
return 'Expected argument $key not found in $message.kind.';
}
String expectedValue = '${arguments[key]}';
String foundValue = '${message.arguments[key]}';
if (expectedValue != foundValue) {
return 'Expected argument $key with value $expectedValue, '
'found $foundValue.';
}
}
return null;
};
}
/// [expectedWarnings] must be a list of either [MessageKind] or [CheckMessage].
void compareWarningKinds(String text,
List expectedWarnings,
List<WarningMessage> foundWarnings) {
var fail = (message) => Expect.fail('$text: $message');
HasNextIterator expectedIterator =
new HasNextIterator(expectedWarnings.iterator);
HasNextIterator<WarningMessage> foundIterator =
new HasNextIterator(foundWarnings.iterator);
while (expectedIterator.hasNext && foundIterator.hasNext) {
var expected = expectedIterator.next();
var found = foundIterator.next();
if (expected is MessageKind) {
Expect.equals(expected, found.message.kind);
} else if (expected is CheckMessage) {
String error = expected(found.message);
Expect.isNull(error, error);
} else {
Expect.fail("Unexpected expectedWarnings value: $expected.");
}
}
if (expectedIterator.hasNext) {
do {
var expected = expectedIterator.next();
if (expected is CheckMessage) expected = expected(null);
print('Expected warning "${expected}" did not occur');
} while (expectedIterator.hasNext);
fail('Too few warnings');
}
if (foundIterator.hasNext) {
do {
print('Additional warning "${foundIterator.next()}"');
} while (foundIterator.hasNext);
fail('Too many warnings');
}
}
void importLibrary(LibraryElement target, LibraryElementX imported,
Compiler compiler) {
for (var element in imported.localMembers) {
compiler.withCurrentElement(element, () {
target.addToScope(element, compiler);
});
}
}
LibraryElement mockLibrary(Compiler compiler, String source) {
Uri uri = new Uri(scheme: "source");
var library = new LibraryElementX(new Script(uri, new MockFile(source)));
importLibrary(library, compiler.coreLibrary, compiler);
library.setExports(<Element>[]);
return library;
}
class CollectingTreeElements extends TreeElementMapping {
final Map<Node, Element> map = new LinkedHashMap<Node, Element>();
CollectingTreeElements(Element currentElement) : super(currentElement);
operator []=(Node node, Element element) {
map[node] = element;
}
operator [](Node node) => map[node];
void remove(Node node) {
map.remove(node);
}
}
// The mock compiler does not split the program in output units.
class MockDeferredLoadTask extends DeferredLoadTask {
MockDeferredLoadTask(Compiler compiler) : super(compiler);
OutputUnit getElementOutputUnit(dynamic dependency) {
return mainOutputUnit;
}
}
api.DiagnosticHandler createHandler(MockCompiler compiler, String text) {
return (uri, int begin, int end, String message, kind) {
SourceFile sourceFile;
if (uri == null) {
sourceFile = new StringSourceFile('analysis', text);
} else {
sourceFile = compiler.sourceFiles[uri.toString()];
}
if (sourceFile != null && begin != null && end != null) {
print(sourceFile.getLocationMessage(message, begin, end, true, (x) => x));
} else {
print(message);
}
};
}