Skip to content

Commit

Permalink
Version 38.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Aug 17, 2019
1 parent dfcc253 commit 5c2ee03
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion core/TreeNode.ts
Expand Up @@ -2381,7 +2381,7 @@ class TreeNode extends AbstractNode {
return str ? indent + str.replace(/\n/g, indent) : ""
}

static getVersion = () => "37.1.0"
static getVersion = () => "38.0.0"

static fromDisk(path: string): TreeNode {
const format = this._getFileFormat(path)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jtree",
"version": "37.1.0",
"version": "38.0.0",
"description": "Simplify your code with Tree Notation. This jtree package includes a Tree Notation parser, compiler-compiler, and virtual machine for Tree Languages, as well as sample languages, implemented in TypeScript.",
"main": "index.js",
"types": "./built/jtree.node.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions products/jtree.browser.js
Expand Up @@ -2426,7 +2426,7 @@ TreeNode.iris = `sepal_length,sepal_width,petal_length,petal_width,species
4.9,2.5,4.5,1.7,virginica
5.1,3.5,1.4,0.2,setosa
5,3.4,1.5,0.2,setosa`
TreeNode.getVersion = () => "37.1.0"
TreeNode.getVersion = () => "38.0.0"
window.TreeNode = TreeNode
var GrammarConstantsCompiler
;(function(GrammarConstantsCompiler) {
Expand Down Expand Up @@ -3964,11 +3964,11 @@ ${example ? example.getContent() + "\n\n" + TreeNode.nest(example.childrenToStri
- ${languageName} has ${Object.keys(cellTypes).length} cell types
- The source code for ${languageName} is ${this.getTopDownArray().length} lines long.
### Installing
## Installing
npm install .
### Testing
## Testing
node test.js
Expand Down
6 changes: 3 additions & 3 deletions products/jtree.node.js
Expand Up @@ -2416,7 +2416,7 @@ TreeNode.iris = `sepal_length,sepal_width,petal_length,petal_width,species
4.9,2.5,4.5,1.7,virginica
5.1,3.5,1.4,0.2,setosa
5,3.4,1.5,0.2,setosa`
TreeNode.getVersion = () => "37.1.0"
TreeNode.getVersion = () => "38.0.0"
var GrammarConstantsCompiler
;(function(GrammarConstantsCompiler) {
GrammarConstantsCompiler["stringTemplate"] = "stringTemplate"
Expand Down Expand Up @@ -3953,11 +3953,11 @@ ${example ? example.getContent() + "\n\n" + TreeNode.nest(example.childrenToStri
- ${languageName} has ${Object.keys(cellTypes).length} cell types
- The source code for ${languageName} is ${this.getTopDownArray().length} lines long.
### Installing
## Installing
npm install .
### Testing
## Testing
node test.js
Expand Down

0 comments on commit 5c2ee03

Please sign in to comment.