Closed dcerys closed 7 years ago
Plant functions cannot begin with any of the reserved function symbols (e.g., ask, tell).
ask
tell
The parser errors whenever it encounters a method call to a symbol that begins with one of the reserved-fn-symbols.
E.g.,
(defpclass main [] :methods [(defpmethod main [] (parallel (tell-branch))) (defpmethod tell-branch []) ])
This test can now be found in https://github.com/dollabs/pamela/blob/master/test/pamela/pending/tell-branch.pamela which should be promoted as an IR test when this issue has been resolved.
Plant functions cannot begin with any of the reserved function symbols (e.g.,
ask
,tell
).The parser errors whenever it encounters a method call to a symbol that begins with one of the reserved-fn-symbols.
E.g.,
This test can now be found in https://github.com/dollabs/pamela/blob/master/test/pamela/pending/tell-branch.pamela which should be promoted as an IR test when this issue has been resolved.