Skip to content

Commit

Permalink
Add estree test for correct order of directives
Browse files Browse the repository at this point in the history
  • Loading branch information
danez committed Mar 4, 2017
1 parent 962ce16 commit 0b7da50
Show file tree
Hide file tree
Showing 2 changed files with 153 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/fixtures/estree/directives/program-order/actual.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"use strict";
"use loose";
var a;
150 changes: 150 additions & 0 deletions test/fixtures/estree/directives/program-order/expected.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
{
"type": "File",
"start": 0,
"end": 33,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 3,
"column": 6
}
},
"program": {
"type": "Program",
"start": 0,
"end": 33,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 3,
"column": 6
}
},
"sourceType": "script",
"body": [
{
"type": "ExpressionStatement",
"start": 0,
"end": 13,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 1,
"column": 13
}
},
"expression": {
"type": "Literal",
"start": 0,
"end": 12,
"loc": {
"start": {
"line": 1,
"column": 0
},
"end": {
"line": 1,
"column": 12
}
},
"value": "use strict",
"raw": "\"use strict\""
},
"directive": "use strict"
},
{
"type": "ExpressionStatement",
"start": 14,
"end": 26,
"loc": {
"start": {
"line": 2,
"column": 0
},
"end": {
"line": 2,
"column": 12
}
},
"expression": {
"type": "Literal",
"start": 14,
"end": 25,
"loc": {
"start": {
"line": 2,
"column": 0
},
"end": {
"line": 2,
"column": 11
}
},
"value": "use loose",
"raw": "\"use loose\""
},
"directive": "use loose"
},
{
"type": "VariableDeclaration",
"start": 27,
"end": 33,
"loc": {
"start": {
"line": 3,
"column": 0
},
"end": {
"line": 3,
"column": 6
}
},
"declarations": [
{
"type": "VariableDeclarator",
"start": 31,
"end": 32,
"loc": {
"start": {
"line": 3,
"column": 4
},
"end": {
"line": 3,
"column": 5
}
},
"id": {
"type": "Identifier",
"start": 31,
"end": 32,
"loc": {
"start": {
"line": 3,
"column": 4
},
"end": {
"line": 3,
"column": 5
},
"identifierName": "a"
},
"name": "a"
},
"init": null
}
],
"kind": "var"
}
]
}
}

0 comments on commit 0b7da50

Please sign in to comment.