mirror of
https://github.com/github/semantic.git
synced 2024-11-25 02:58:36 +03:00
Correct Syntax.Keyed mapping.
This commit is contained in:
parent
be6b72cf00
commit
62000715e8
@ -152,7 +152,7 @@
|
||||
Syntax.prototype.map = function(transform) {
|
||||
if (this.leaf != null) { return new Syntax({ leaf: this.leaf }, transform); }
|
||||
if (this.indexed != null) { return new Syntax({ indexed: this.indexed }, transform); }
|
||||
if (this.keyed != null) { return new Syntax({ keyed: this.keyed }, transform); }
|
||||
if (this.keyed != null) { return new Syntax({ keyed: this.keyed.values }, transform); }
|
||||
}
|
||||
|
||||
function diffFromJSON(json) {
|
||||
|
Loading…
Reference in New Issue
Block a user