Skip to content

Commit 763c861

Browse files
This may fix arithmetic operations
Need to discuss this with Francesca
1 parent 31b34e2 commit 763c861

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/query/woqlDoc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ function convert(obj) {
7272
*/
7373
function Var(name) {
7474
this.name = name;
75+
this.json = function () {
76+
return {
77+
'@type' : 'Value',
78+
variable : this.name
79+
}
80+
}
7581
}
7682

7783
/**

0 commit comments

Comments
 (0)