We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bdb379 commit ae9fea9Copy full SHA for ae9fea9
test/astTests.js
@@ -9,6 +9,25 @@ describe('Test AST structure', function() {
9
ast.children.length.should.be.exactly(0);
10
});
11
12
+ it('test withSource options', function() {
13
+ var ast = parser.parseEval('true;', {
14
+ ast: {
15
+ withSource: true
16
+ }
17
+ });
18
+ // @todo
19
20
+ it('test withPositions options', function() {
21
22
23
+ withPositions: true
24
25
26
27
28
+
29
30
31
it('test arrays', function() {
32
var ast;
33
0 commit comments