khepri-ast
Advanced tools
Comparing version 3.10.1 to 3.10.2
# ChangeLog # | ||
## 3.10.2 - May 5, 2014 | ||
* Fixed `SourceLocation.toString`. | ||
## 3.10.0 - May 5, 2014 | ||
* Added optional file field to `SourceLocation` | ||
* Added optional file field to `SourceLocation`. | ||
@@ -6,0 +9,0 @@ ## 3.9.1 - April 13, 2014 |
@@ -34,4 +34,4 @@ /* | ||
var self = this; | ||
return ("{" + (self.file ? (("file:" + self.file) + " ") : (((("" ("start:") + self.start) + " end:") + | ||
self.end) + "}"))); | ||
return (((((("{" + (self.file ? (("file:" + self.file) + " ") : "")) + "start:") + self.start) + " end:") + | ||
self.end) + "}"); | ||
})); | ||
@@ -38,0 +38,0 @@ (SourceLocation.merge = (function(s1, s2) { |
@@ -35,4 +35,4 @@ /* | ||
var self = this; | ||
return ("{" + (self.file ? (("file:" + self.file) + " ") : (((("" ("start:") + self.start) + | ||
" end:") + self.end) + "}"))); | ||
return (((((("{" + (self.file ? (("file:" + self.file) + " ") : "")) + "start:") + self.start) + | ||
" end:") + self.end) + "}"); | ||
})); | ||
@@ -39,0 +39,0 @@ (SourceLocation.merge = (function(s1, s2) { |
{ | ||
"name": "khepri-ast", | ||
"version": "3.10.1", | ||
"version": "3.10.2", | ||
"description": "Khepri AST nodes", | ||
@@ -11,4 +11,3 @@ "repository": { | ||
"khepri", | ||
"ast" | ||
], | ||
"ast"], | ||
@@ -15,0 +14,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
97190