parse/always
This commit is contained in:
parent
a79f33852a
commit
1b1a420156
1 changed files with 17 additions and 2 deletions
|
@ -154,6 +154,7 @@ line = 0
|
|||
lint = ""
|
||||
module = ""
|
||||
|
||||
# begin
|
||||
}
|
||||
|
||||
# ╭──────┬───────╮
|
||||
|
@ -283,9 +284,18 @@ function parse_next(string) {
|
|||
|
||||
{
|
||||
|
||||
# ╭──────┬──────┬───────╮
|
||||
# │ code │ main │ parse │
|
||||
# ╰──────┴──────┴───────╯
|
||||
|
||||
parse($0)
|
||||
|
||||
# ╭──────┬──────┬──────╮
|
||||
# │ code │ main │ exit │
|
||||
# ╰──────┴──────┴──────╯
|
||||
|
||||
# doc
|
||||
if (action == "doc") {
|
||||
parse($0)
|
||||
|
||||
# constant
|
||||
if (current_match == "constant") {
|
||||
|
@ -413,8 +423,13 @@ if (action == "doc") {
|
|||
# action
|
||||
}
|
||||
|
||||
# ╭──────┬──────┬──────╮
|
||||
# │ code │ main │ next │
|
||||
# ╰──────┴──────┴──────╯
|
||||
|
||||
parse_next($0)
|
||||
|
||||
# main
|
||||
parse_next($0)
|
||||
}
|
||||
|
||||
# ╭──────┬─────╮
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue