(minor) add missing semi-colon

This commit is contained in:
Alexis Sellier
2012-01-15 17:23:20 +01:00
parent 469f56843d
commit e8ac71c5b0

View File

@@ -11,7 +11,7 @@ tree.Condition.prototype.eval = function (env) {
var a = this.lvalue.eval(env),
b = this.rvalue.eval(env);
var i = this.index, result
var i = this.index, result;
var result = (function (op) {
switch (op) {