fix
This commit is contained in:
parent
e63edb0c7b
commit
d02c371610
1 changed files with 3 additions and 2 deletions
|
@ -216,6 +216,7 @@ function parse(string) {
|
||||||
}
|
}
|
||||||
doc_reset()
|
doc_reset()
|
||||||
|
|
||||||
|
# match
|
||||||
}
|
}
|
||||||
|
|
||||||
# close
|
# close
|
||||||
|
@ -233,12 +234,12 @@ function parse_next(string) {
|
||||||
constant = ""
|
constant = ""
|
||||||
|
|
||||||
# variable
|
# variable
|
||||||
if (current_match == "variable") {
|
} else if (current_match == "variable") {
|
||||||
doc_reset()
|
doc_reset()
|
||||||
variable = ""
|
variable = ""
|
||||||
|
|
||||||
# function
|
# function
|
||||||
if (current_match == "close") {
|
} else if (current_match == "close") {
|
||||||
doc_reset()
|
doc_reset()
|
||||||
current_function = ""
|
current_function = ""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue