We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bf82ff commit a75f52bCopy full SHA for a75f52b
1 file changed
lib/source-node.js
@@ -35,7 +35,7 @@ const isSourceNode = "$$$isSourceNode$$$";
35
class SourceNode {
36
constructor(aLine, aColumn, aSource, aChunks, aName) {
37
this.children = [];
38
- this.sourceContents = {};
+ this.sourceContents = Object.create(null);
39
this.line = aLine == null ? null : aLine;
40
this.column = aColumn == null ? null : aColumn;
41
this.source = aSource == null ? null : aSource;
0 commit comments