fix missing semi-colon

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@4347 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
msridhar1 2012-01-06 21:30:02 +00:00
parent fc1a961c4c
commit a55135831e
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ Array.prototype = {
},
push: function push () {
var n = this.length
var n = this.length;
for(var i = 0; i < arguments.length; i++) {
this[ n++ ] = arguments[i];
}