| Index: compiler/lib/implementation/core.js
|
| diff --git a/compiler/lib/implementation/core.js b/compiler/lib/implementation/core.js
|
| index ee94a7bb527e40ef08888dbea708dc183fe72d50..3ac10f35b3b2872d27cb5d9097127e97eba596dc 100644
|
| --- a/compiler/lib/implementation/core.js
|
| +++ b/compiler/lib/implementation/core.js
|
| @@ -369,7 +369,7 @@ function EQ$operator(val1, val2) {
|
| } else if (typeof(val1) == typeof(val2) && typeof val1 != 'object') {
|
| // number, boolean, string
|
| return val1 === val2;
|
| - }
|
| + }
|
| return val1.EQ$operator(val2);
|
| }
|
|
|
|
|