mirror of
https://github.com/github/semantic.git
synced 2024-11-25 11:04:00 +03:00
Don’t shadow the continuation.
This commit is contained in:
parent
df4e37e5de
commit
ee1c1acb5b
@ -72,10 +72,10 @@
|
||||
}
|
||||
}
|
||||
|
||||
function term(term, a, b) {
|
||||
if (term.extract == null || term.unwrap == null) { return null; }
|
||||
function term(json, a, b) {
|
||||
if (json.extract == null || json.unwrap == null) { return null; }
|
||||
|
||||
return new Term(term.extract, syntax(term.unwrap, a, b, term));
|
||||
return new Term(json.extract, syntax(json.unwrap, a, b, term));
|
||||
}
|
||||
|
||||
function patch(patch, a, b) {
|
||||
|
Loading…
Reference in New Issue
Block a user