Skip to content

Commit

Permalink
Upgrade: espree 3.2.0 (fixes #279)
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Jun 12, 2016
1 parent c747397 commit f374a65
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -21,7 +21,7 @@
},
"license": "BSD-2-Clause",
"dependencies": {
"acorn": "^3.1.0",
"acorn": "^3.2.0",
"acorn-jsx": "^3.0.0"
},
"devDependencies": {
Expand Down
@@ -0,0 +1,6 @@
module.exports = {
"index": 14,
"lineNumber": 2,
"column": 5,
"message": "'this' can not be used as shorthand property"
};
@@ -0,0 +1,3 @@
var x = {
this
};
Expand Up @@ -82,7 +82,7 @@ module.exports = {
8,
40
],
"value": null,
"value": {},
"raw": "/[\\u{0000000000000061}-\\u{7A}]/u",
"regex": {
"pattern": "[\\u{0000000000000061}-\\u{7A}]",
Expand Down
@@ -1,6 +1,6 @@
module.exports = {
"index": 12,
"index": 9,
"lineNumber": 1,
"column": 13,
"message": "Code point out of bounds"
"column": 10,
"message": "Error parsing regular expression: Invalid regular expression: /\\u{110000}/: Invalid unicode escape"
};
Expand Up @@ -82,7 +82,7 @@ module.exports = {
10,
16
],
"value": null,
"value": {},
"raw": "/foo/u",
"regex": {
"pattern": "foo",
Expand Down
Expand Up @@ -82,7 +82,7 @@ module.exports = {
10,
16
],
"value": null,
"value": {},
"raw": "/foo/y",
"regex": {
"pattern": "foo",
Expand Down

0 comments on commit f374a65

Please sign in to comment.