fix(ast): fix the size of a list in _evalListCache

This commit is contained in:
Victor Berchet 2015-05-22 18:50:24 +02:00
parent c39c8ebcd0
commit 0387221da8
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ var _evalListCache = [
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
];
function evalList(context, locals, exps: List<any>) {