| Index: lib/runtime/dart/convert.js
|
| diff --git a/lib/runtime/dart/convert.js b/lib/runtime/dart/convert.js
|
| index a6175d83857fdd29b314293cd08cec7ce3807754..fb427e537d82611e93994403017168fab6015256 100644
|
| --- a/lib/runtime/dart/convert.js
|
| +++ b/lib/runtime/dart/convert.js
|
| @@ -519,7 +519,7 @@ var collection = dart.import(collection);
|
| [_convert](text, start, end) {
|
| let result = null;
|
| for (let i = start; dart.notNull(i) < dart.notNull(end); i = dart.notNull(i) + 1) {
|
| - let ch = core.String.get(text, i);
|
| + let ch = text.get(i);
|
| let replace = null;
|
| switch (ch) {
|
| case '&':
|
|
|