mirror of
https://github.com/enso-org/enso.git
synced 2024-11-30 17:44:58 +03:00
843 B
843 B
layout | title | category | tags | order | |||
---|---|---|---|---|---|---|---|
developer-doc | Operator Resolution | parser |
|
6 |
Operator Resolution
Operator resolution is the process of resolving applications of operators into specific nodes on the AST.
Resolution Algorithm
The operator resolution process uses a version of the classic shunting-yard algorithm with modifications to support operator sections.
The actionables for this section are:
- Work out how to formulate this functionality efficiently in rust. The scala implementation can be found here.