Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Equality operator not working as expected #66

Closed
goodwithgit opened this issue Aug 30, 2013 · 2 comments
Closed

Equality operator not working as expected #66

goodwithgit opened this issue Aug 30, 2013 · 2 comments

Comments

@goodwithgit
Copy link

I have an object defined thus:

define Value {
    id : null,
    v : null,
    constructor : function (id, value) {
        this.id = id;
        this.v = value;
     }
}

I'm asserting a fact like this:

s.assert(new Value("xyz", 27));

Then looking for it in a when clause like this:

v4 : Value v4.id =~ /xyz/ && v4.v == 27;

The == comparison fails to trigger the rule. The following does trigger the rule:

 v4 : Value v4.id =~ /xyz/ && v4.v >= 27 && v4.v <= 27;

I expected the == to work.

@goodwithgit
Copy link
Author

I should also note that the following two do not trigger the rule:

 v4 : Value v4.id =~ /xyz/ && v4.v >= 27;

or

 v4 : Value v4.id =~ /xyz/ && v4.v <= 27;

Only when they appear together does the rule get triggered.

doug-martin added a commit to doug-martin/nools that referenced this issue Sep 4, 2013
* Added ability to `import` other nools files to create composible rules files [noolsjs#58](noolsjs#58)
* When using `global` to require other files you can now require other files relative to the nools file
* Added uglify-js as a dependency instead of devDependency noolsjs#71
* Fixed issue noolsjs#61 where transpile would not properly escape `"` character.
* Fixed issue noolsjs#66 and noolsjs#67 where regular expression matching was too greedy.
* Fixed issue noolsjs#62 where constraints with a `"` character would produce invalid javascript when `transpiling`.
* Fixed issue noolsjs#69 where rules names with a `'` character in a rule would produce invalid javascript when `transpiling`.
@doug-martin doug-martin mentioned this issue Sep 4, 2013
@doug-martin
Copy link
Contributor

This should be fixed in the v0.1.10 as I could not reproduce after fixing #67.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants