You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
currently the lexer will tokanize a.b.c() as a single token and return a getterFn that has c fn prebound to a.b. This was done to simplify the implementation of the parser and improve performance but it results in certain issues (e.g. watching a fn reference must be done via $unboundFn, see 7da2bdb).
It would be better if the lexer tokanized a.b.c() as a.b, ., c, where the . token would represent method invocation which parser would recognize and execute c in the context of a.b
The text was updated successfully, but these errors were encountered:
currently the lexer will tokanize
a.b.c()
as a single token and return a getterFn that has c fn prebound toa.b
. This was done to simplify the implementation of the parser and improve performance but it results in certain issues (e.g. watching a fn reference must be done via $unboundFn, see 7da2bdb).It would be better if the lexer tokanized
a.b.c()
asa.b
,.
,c
, where the.
token would represent method invocation which parser would recognize and executec
in the context ofa.b
The text was updated successfully, but these errors were encountered: