OLD | NEW |
---|---|
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 // The following methods are used to handle type information | 5 // The following methods are used to handle type information |
6 // | 6 // |
7 | 7 |
8 /** | 8 /** |
9 * @constructor | 9 * @constructor |
10 * @param {string} classkey | 10 * @param {string} classkey |
11 * @param {string=} typekey | 11 * @param {string=} typekey |
12 * @param {Array.<RTT>=} typeargs | 12 * @param {Array.<RTT>=} typeargs |
13 * @param {RTT} returnType | |
14 * @param {bool} functionType | |
13 */ | 15 */ |
14 function RTT(classkey, typekey, typeargs) { | 16 function RTT(classkey, typekey, typeargs, returnType, functionType) { |
15 this.classKey = classkey; | 17 this.classKey = classkey; |
16 this.typeKey = typekey ? typekey : classkey; | 18 this.typeKey = typekey ? typekey : classkey; |
17 this.typeArgs = typeargs; | 19 this.typeArgs = typeargs; |
20 this.returnType = returnType; // key for the return type | |
18 this.implementedTypes = {}; | 21 this.implementedTypes = {}; |
22 this.functionType = functionType; | |
19 // Add self | 23 // Add self |
20 this.implementedTypes[classkey] = this; | 24 this.implementedTypes[classkey] = this; |
21 // Add Object | 25 // Add Object |
22 if (classkey != $cls('Object')) { | 26 if (!functionType && classkey != $cls('Object')) { |
23 this.implementedTypes[$cls('Object')] = RTT.objectType; | 27 this.implementedTypes[$cls('Object')] = RTT.objectType; |
24 } | 28 } |
25 } | 29 } |
26 | 30 |
27 /** @type {Object.<string, Object>} */ | 31 /** @type {Object.<string, Object>} */ |
28 RTT.types = {}; | 32 RTT.types = {}; |
29 | 33 |
30 /** @type {Array.<RTT>} */ | 34 /** @type {Array.<RTT>} */ |
31 RTT.prototype.derivedTypes = []; | 35 RTT.prototype.derivedTypes = []; |
32 | 36 |
33 /** @return {string} */ | 37 /** @return {string} */ |
34 RTT.prototype.toString = function() { return this.typeKey; } | 38 RTT.prototype.toString = function() { return this.typeKey; } |
35 | 39 |
36 /** | 40 /** |
37 * @param {*} value | 41 * @param {*} value |
38 * @return {boolean} Whether this type is implemented by the value | 42 * @return {boolean} Whether this type is implemented by the value |
39 */ | 43 */ |
40 RTT.prototype.implementedBy = function(value){ | 44 RTT.prototype.implementedBy = function(value){ |
41 return (value == null) ? RTT.nullInstanceOf(this) : | 45 return (value == null) ? RTT.nullInstanceOf(this) : |
46 this.functionType ? this.implementedByTypeFunc(value) : | |
42 this.implementedByType(RTT.getTypeInfo(value)); | 47 this.implementedByType(RTT.getTypeInfo(value)); |
43 }; | 48 }; |
44 | 49 |
45 /** | 50 /** |
46 * A helper function for safely looking up a value | 51 * A helper function for safely looking up a value |
47 * in a Object used as a map. | 52 * in a Object used as a map. |
48 * @param {Object.<*>} map | 53 * @param {Object.<*>} map |
49 * @param {srting} key | 54 * @param {srting} key |
50 * @return {*} the value or null; | 55 * @return {*} the value or null; |
51 */ | 56 */ |
52 function $mapLookup(map, key) { | 57 function $mapLookup(map, key) { |
53 return map.hasOwnProperty(key) ? map[key] : null; | 58 return map.hasOwnProperty(key) ? map[key] : null; |
54 } | 59 } |
55 | 60 |
61 RTT.prototype.implementedByTypeSwitch = function(value){ | |
62 return this.functionType ? this.implementedByTypeFunc(value) : | |
63 this.implementedByType(value); | |
64 }; | |
65 | |
56 /** | 66 /** |
57 * @param {!RTT} other | 67 * @param {!RTT} other |
58 * @return {boolean} Whether this type is implement by other | 68 * @return {boolean} Whether this type is implement by other |
59 */ | 69 */ |
60 RTT.prototype.implementedByType = function(otherType) { | 70 RTT.prototype.implementedByType = function(otherType) { |
61 if (otherType === this || otherType === RTT.dynamicType) { | 71 if (otherType === this || otherType === RTT.dynamicType) { |
62 return true; | 72 return true; |
63 } | 73 } |
64 var targetTypeInfo = $mapLookup(otherType.implementedTypes, this.classKey); | 74 var targetTypeInfo = $mapLookup(otherType.implementedTypes, this.classKey); |
65 if (targetTypeInfo == null) { | 75 if (targetTypeInfo == null) { |
66 return false; | 76 return false; |
67 } | 77 } |
68 if (targetTypeInfo.typeArgs && this.typeArgs) { | 78 if (targetTypeInfo.typeArgs && this.typeArgs) { |
69 for(var i = this.typeArgs.length - 1; i >= 0; i--) { | 79 for(var i = this.typeArgs.length - 1; i >= 0; i--) { |
70 if (!this.typeArgs[i].implementedByType(targetTypeInfo.typeArgs[i])) { | 80 if (!this.typeArgs[i].implementedByTypeSwitch(targetTypeInfo.typeArgs[i])) { |
71 return false; | 81 return false; |
72 } | 82 } |
73 } | 83 } |
84 } | |
85 return true; | |
86 }; | |
87 | |
88 /** | |
89 * @param {!RTT} other | |
90 * @return {boolean} Whether this type is assignable by other | |
91 */ | |
92 RTT.prototype.assignableByType = function(otherType) { | |
93 if (otherType === this || otherType === RTT.dynamicType || this === RTT.dynami cType) { | |
94 return true; | |
95 } | |
96 var targetTypeInfo = $mapLookup(otherType.implementedTypes, this.classKey); | |
97 if (targetTypeInfo == null) { | |
98 targetTypeInfo = $mapLookup(this.implementedTypes, otherType.classKey); | |
99 if (targetTypeInfo == null) { | |
100 return false; | |
101 } | |
102 } | |
103 if (targetTypeInfo.typeArgs && this.typeArgs) { | |
104 for(var i = this.typeArgs.length - 1; i >= 0; i--) { | |
105 if (!this.typeArgs[i].assignableByType(targetTypeInfo.typeArgs[i])) { | |
106 return false; | |
107 } | |
108 } | |
74 } | 109 } |
75 return true; | 110 return true; |
76 }; | 111 }; |
77 | 112 |
113 | |
114 /** | |
115 * @param {!RTT} other | |
116 * @return {boolean} Whether this type is implemented by other | |
117 */ | |
118 RTT.prototype.implementedByTypeFunc = function(otherType) { | |
119 if (otherType.$lookupRTT) { | |
120 otherType = otherType.$lookupRTT(); | |
121 } else if (!(otherType instanceof RTT)) { | |
122 return false; | |
123 } | |
124 if (otherType === this || otherType === RTT.dynamicType) { | |
125 return true; | |
126 } | |
127 var props = Object.getOwnPropertyNames(otherType.implementedTypes); | |
128 NEXT_PROPERTY: for (var i = 0 ; i < props.length; i++) { | |
129 var mapped = otherType.implementedTypes[props[i]]; | |
130 if (mapped.returnType && this.returnType && | |
131 !this.returnType.assignableByType(mapped.returnType)) { | |
132 continue; | |
133 } | |
134 if (mapped.typeArgs && this.typeArgs) { | |
135 if (this.typeArgs.length != mapped.typeArgs.length) { | |
136 continue; | |
137 } | |
138 for (var x = this.typeArgs.length - 1; x >= 0; x--) { | |
139 if (!this.typeArgs[x].assignableByType(mapped.typeArgs[x])) { | |
140 continue NEXT_PROPERTY; | |
141 } | |
142 } | |
143 } else if (mapped.typeArgs || this.typeArgs) { | |
144 return false; | |
145 } | |
146 return true; | |
147 } | |
148 return false; | |
149 }; | |
150 | |
78 /** | 151 /** |
79 * @return {string} the class name associated with this type | 152 * @return {string} the class name associated with this type |
80 */ | 153 */ |
81 RTT.prototype.getClassName = function() { | 154 RTT.prototype.getClassName = function() { |
82 var name = this.classKey; | 155 var name = this.classKey; |
83 if (name.substr(0, 4) == "cls:") { | 156 if (name.substr(0, 4) == "cls:") { |
84 name = name.substr(4); | 157 name = name.substr(4); |
85 } | 158 } |
86 if (name.substr(-5) == "$Dart") { | 159 if (name.substr(-5) == "$Dart") { |
87 name = name.substr(0, name.length - 5); | 160 name = name.substr(0, name.length - 5); |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
127 var classkey = RTT.getTypeKey(name); | 200 var classkey = RTT.getTypeKey(name); |
128 rtt = new RTT(classkey, typekey, typeArgs); | 201 rtt = new RTT(classkey, typekey, typeArgs); |
129 RTT.types[typekey] = rtt; | 202 RTT.types[typekey] = rtt; |
130 if (implementsSupplier) { | 203 if (implementsSupplier) { |
131 implementsSupplier(rtt, typeArgs); | 204 implementsSupplier(rtt, typeArgs); |
132 } | 205 } |
133 return rtt; | 206 return rtt; |
134 }; | 207 }; |
135 | 208 |
136 /** | 209 /** |
210 * @param {Array.<RTT>=} typeArgs | |
211 * @param {<RTT>=} returnType (if defined) | |
212 * @return {RTT} The RTT information object | |
213 */ | |
214 RTT.createFunction = function(typeArgs, returnType) { | |
215 var name = $cls("Function"); | |
216 var typekey = RTT.getTypeKey(name, typeArgs, returnType); | |
217 var rtt = $mapLookup(RTT.types, typekey); | |
218 if (rtt) { | |
219 return rtt; | |
220 } | |
221 var classkey = RTT.getTypeKey(name); | |
222 rtt = new RTT(classkey, typekey, typeArgs, returnType, true); | |
223 RTT.types[typekey] = rtt; | |
224 return rtt; | |
225 }; | |
226 | |
227 /** | |
137 * @param {string} classkey | 228 * @param {string} classkey |
138 * @param {Array.<(RTT|string)>=} typeargs | 229 * @param {Array.<(RTT|string)>=} typeargs |
230 * @param {string} returntype | |
139 * @return {string} | 231 * @return {string} |
140 */ | 232 */ |
141 RTT.getTypeKey = function(classkey, typeargs) { | 233 RTT.getTypeKey = function(classkey, typeargs, returntype) { |
142 var key = classkey; | 234 var key = classkey; |
143 if (typeargs) { | 235 if (typeargs) { |
144 key += "<" + typeargs.join(",") + ">"; | 236 key += "<" + typeargs.join(",") + ">"; |
145 } | 237 } |
238 if (returntype) { | |
239 key += "-><" + returntype + ">"; | |
240 } | |
146 return key; | 241 return key; |
147 }; | 242 }; |
148 | 243 |
149 /** | 244 /** |
150 * @return {*} value | 245 * @return {*} value |
151 * @return {RTT} return the RTT information object for the value | 246 * @return {RTT} return the RTT information object for the value |
152 */ | 247 */ |
153 RTT.getTypeInfo = function(value) { | 248 RTT.getTypeInfo = function(value) { |
154 return (value.$typeInfo) ? value.$typeInfo : RTT.getNativeTypeInfo(value); | 249 return (value.$typeInfo) ? value.$typeInfo : RTT.getNativeTypeInfo(value); |
155 }; | 250 }; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
212 RTT.call(this,name); | 307 RTT.call(this,name); |
213 } | 308 } |
214 $inherits(ImplementsAll,RTT); | 309 $inherits(ImplementsAll,RTT); |
215 ImplementsAll.prototype.implementedBy = function(o) {return true}; | 310 ImplementsAll.prototype.implementedBy = function(o) {return true}; |
216 ImplementsAll.prototype.implementedByType = function(o) {return true}; | 311 ImplementsAll.prototype.implementedByType = function(o) {return true}; |
217 | 312 |
218 RTT.objectType = new ImplementsAll($cls('Object')); | 313 RTT.objectType = new ImplementsAll($cls('Object')); |
219 RTT.dynamicType = new ImplementsAll($cls('Dynamic')); | 314 RTT.dynamicType = new ImplementsAll($cls('Dynamic')); |
220 RTT.placeholderType = new ImplementsAll($cls('::')); | 315 RTT.placeholderType = new ImplementsAll($cls('::')); |
221 | 316 |
317 function getDynamic() { | |
mmendez
2011/12/07 20:03:00
Do you still need this function to pass optimized
codefu
2011/12/07 21:44:54
Not anymore. John Lenz solved this by pointing out
| |
318 return RTT.dynamicType; | |
319 } | |
320 | |
222 /** | 321 /** |
223 * Checks that a value is assignable to an expected type, and either returns tha t | 322 * Checks that a value is assignable to an expected type, and either returns tha t |
224 * value if it is, or else throws a TypeMismatchException. | 323 * value if it is, or else throws a TypeMismatchException. |
225 * | 324 * |
226 * @param {!RTT} the expected type | 325 * @param {!RTT} the expected type |
227 * @param {*} the value to check | 326 * @param {*} the value to check |
228 * @return {*} the value | 327 * @return {*} the value |
229 */ | 328 */ |
230 function $chk(rtt, value) { | 329 function $chk(rtt, value) { |
231 // null can be assigned to any type | 330 // null can be assigned to any type |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
277 return typeof o == 'number'; | 376 return typeof o == 'number'; |
278 } | 377 } |
279 | 378 |
280 /** | 379 /** |
281 * @param {*} o | 380 * @param {*} o |
282 * @return {boolean} | 381 * @return {boolean} |
283 */ | 382 */ |
284 function $isString(o) { | 383 function $isString(o) { |
285 return typeof o == 'string'; | 384 return typeof o == 'string'; |
286 } | 385 } |
OLD | NEW |