Fix wording for not supported constant type error

This commit is contained in:
Marco Castelluccio 2014-10-31 01:21:39 +01:00
Родитель d127c9770f
Коммит 435ac7cf5c
1 изменённых файлов: 1 добавлений и 1 удалений

2
vm.js
Просмотреть файл

@ -70,7 +70,7 @@ function resolve(ctx, cp, idx, isStatic) {
classInfo.className + "." + methodName + "." + signature + " not found");
break;
default:
throw new Error("not support constant type");
throw new Error("not supported constant type");
}
return cp[idx] = constant;
}