1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00

Construct Fixed nodes.

This commit is contained in:
Rob Rix 2015-10-26 09:35:42 -04:00
parent 9041ebafa1
commit 9bef60f2dd

View File

@ -167,6 +167,7 @@
function Syntax(json, continuation) {
if (json.indexed != null) { this.indexed = json.indexed.map(continuation); }
if (json.fixed != null) { this.fixed = json.fixed.map(continuation); }
if (json.keyed != null) { this.keyed = (new Dictionary(json.keyed)).map(continuation); }
if (json.leaf != null) { this.leaf = json.leaf; }
return this;