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
instead of
g = parsley.makeGrammar(some_grammar, bindings)
g("blabla").s()
we want:
g = parsley.makeGrammar(some_grammar, {})
g("blabla", bindings).s()
and, it's even better if we could support overriding(the same name given latter override the previous one)
The text was updated successfully, but these errors were encountered:
grayflow
changed the title
add bindings when given
given bindings with inputs
Mar 25, 2016
some_grammar = "s = 'something' "
bindings = { 'a': 'hello'}
instead of
g = parsley.makeGrammar(some_grammar, bindings)
g("blabla").s()
we want:
g = parsley.makeGrammar(some_grammar, {})
g("blabla", bindings).s()
and, it's even better if we could support overriding(the same name given latter override the previous one)
The text was updated successfully, but these errors were encountered: