Chromium Code Reviews| Index: lib/compiler/implementation/lib/js_helper.dart |
| =================================================================== |
| --- lib/compiler/implementation/lib/js_helper.dart (revision 8103) |
| +++ lib/compiler/implementation/lib/js_helper.dart (working copy) |
| @@ -1072,3 +1072,11 @@ |
| if (JS('bool', '#[#]()', value, property)) return value; |
| propertyTypeError(value, property); |
| } |
| + |
| +/** |
| + * Special interface recognized by the compiler and implemented by DOM |
| + * objects that support integer indexing. This interface is not |
| + * visible to anyone, and is only injected into special lirbaries. |
|
ahe
2012/06/12 18:30:04
lirbaries -> libraries
ngeoffray
2012/06/13 13:02:42
Done.
|
| + */ |
| +interface JavaScriptIndexingBehavior { |
| +} |