Skip to content

Commit

Permalink
scope node for document
Browse files Browse the repository at this point in the history
  • Loading branch information
hax committed Sep 28, 2016
1 parent 8716408 commit 636fb5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parse/index.js
Expand Up @@ -3,7 +3,7 @@ export const parseFile = filename => {
const lines = splitLines(readFile(filename))
const tree = parseLines(lines)
console.timeEnd('parse ' + filename)
return ['document', [filename, 1, 1], lines, undefined, tree]
return ['document', [filename, 1, 1], lines, [], tree]
}

import {readFileSync} from 'fs'
Expand Down

0 comments on commit 636fb5c

Please sign in to comment.