@journeyapps/evaluator
Advanced tools
Comparing version 0.0.0-dev.375c2d3.0ce5033 to 0.0.0-dev.4e4523a.19180b5
@@ -13,2 +13,3 @@ /** | ||
constructor(expression: string, start?: number); | ||
stringify(): string; | ||
isFunction(): boolean; | ||
@@ -15,0 +16,0 @@ /** |
@@ -11,2 +11,3 @@ /** | ||
protected constructor(expression: string, start?: number); | ||
stringify(): string; | ||
toString(): string; | ||
@@ -13,0 +14,0 @@ isConstant(): boolean; |
@@ -9,2 +9,3 @@ export interface TypeInterface { | ||
options: object; | ||
stringify(): string; | ||
} |
@@ -18,2 +18,5 @@ "use strict"; | ||
} | ||
stringify() { | ||
return `${FunctionTokenExpression.PREFIX}${this.expression}`; | ||
} | ||
isFunction() { | ||
@@ -20,0 +23,0 @@ return true; |
@@ -13,2 +13,5 @@ "use strict"; | ||
} | ||
stringify() { | ||
return this.expression; | ||
} | ||
toString() { | ||
@@ -15,0 +18,0 @@ return ('[object ' + |
{ | ||
"name": "@journeyapps/evaluator", | ||
"version": "0.0.0-dev.375c2d3.0ce5033", | ||
"version": "0.0.0-dev.4e4523a.19180b5", | ||
"description": "Journey JS library", | ||
@@ -14,3 +14,3 @@ "main": "./dist/src/index.js", | ||
"dependencies": { | ||
"@journeyapps/core-xml": "0.0.0-dev.375c2d3.0ce5033" | ||
"@journeyapps/core-xml": "0.0.0-dev.4e4523a.19180b5" | ||
}, | ||
@@ -21,3 +21,3 @@ "files": [ | ||
], | ||
"gitHead": "9eabd513e30ef59a7c471e2999bf2189201bb6da" | ||
"gitHead": "6571b24208c83bbe35b2c293212c4c75c639529f" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
91541
1141
+ Added@journeyapps/core-xml@0.0.0-dev.4e4523a.19180b5(transitive)
- Removed@journeyapps/core-xml@0.0.0-dev.375c2d3.0ce5033(transitive)