File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ function exp2str (exp)
154154 end
155155 end
156156 str = str .. " }"
157- elseif tag == " Invoke" then -- `Invoke{ expr `String{ <string> expr* }
157+ elseif tag == " Invoke" then -- `Invoke{ expr `String{ <string> } expr* }
158158 str = str .. " { "
159159 str = str .. exp2str (exp [1 ]) .. " , "
160160 str = str .. exp2str (exp [2 ])
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ function traverse_exp (env, exp)
310310 return traverse_paren (env , exp )
311311 elseif tag == " Call" then -- `Call{ expr expr* }
312312 return traverse_call (env , exp )
313- elseif tag == " Invoke" then -- `Invoke{ expr `String{ <string> expr* }
313+ elseif tag == " Invoke" then -- `Invoke{ expr `String{ <string> } expr* }
314314 return traverse_invoke (env , exp )
315315 elseif tag == " Id" or -- `Id{ <string> }
316316 tag == " Index" then -- `Index{ expr expr }
You can’t perform that action at this time.
0 commit comments