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

Unified Diff: frog/library.dart

Issue 9270048: Lots of frog cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: frog/library.dart
diff --git a/frog/library.dart b/frog/library.dart
index b7ac372bc0e2ae6ca4ffbac34ca7d3a0a20166a4..c590fef63ded5e9d6b2a769f4b242db4c0b02c6a 100644
--- a/frog/library.dart
+++ b/frog/library.dart
@@ -118,7 +118,7 @@ class Library extends Element {
// TODO(jimhug): Cache and share the types as interfaces!
Type getOrAddFunctionType(Element enclosingElement, String name,
- FunctionDefinition func) {
+ FunctionDefinition func, MethodData data) {
// TODO(jimhug): This is redundant now that FunctionDef has type params.
final def = new FunctionTypeDefinition(func, null, func.span);
final type = new DefinedType(name, this, def, false);
@@ -126,6 +126,7 @@ class Library extends Element {
var m = type.members[':call'];
m.enclosingElement = enclosingElement;
m.resolve();
+ m._methodData = data;
// Function types implement the Function interface.
type.interfaces = [world.functionType];
return type;
@@ -198,24 +199,24 @@ class Library extends Element {
return ret;
}
- Type resolveType(TypeReference node, bool typeErrors) {
- if (node == null) return world.varType;
- if (node.type != null) return node.type;
+ // TODO(jimhug): Why is it okay to assume node is NameTypeReference in here?
+ Type resolveType(TypeReference node, bool typeErrors, bool allowTypeParams) {
+ if (node == null) return world.varType;
- node.type = findType(node);
+ var ret = findType(node);
- if (node.type == null) {
+ if (ret == null) {
var message = 'cannot find type ${_getDottedName(node)}';
if (typeErrors) {
world.error(message, node.span);
- node.type = world.objectType;
+ return world.objectType;
} else {
world.warning(message, node.span);
- node.type = world.varType;
+ return world.varType;
}
}
- return node.type;
+ return ret;
}
static String _getDottedName(NameTypeReference type) {
@@ -361,8 +362,8 @@ class _LibraryVisitor implements TreeVisitor {
isTop = false;
var newSources = sources;
sources = [];
- for (var source in newSources) {
- addSource(source);
+ for (var newSource in newSources) {
+ addSource(newSource);
}
}
« frog/gen.dart ('K') | « frog/lib/string_base.dart ('k') | frog/member.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698