Code Block Parsing
Code Block Parsing
Overview of how code blocks are parsed
The murex parser creates ASTs ahead of interpreting each block of code. However the AST is only generated for a block at a time. Take this sample code:
function example {
# An example function
if { $ENVVAR } then {
out 'foobar'
}
out 'Finished!'
}
When that code is run function
is executed with the parameters example
and { ... }
but the contents of { ... }
isn't converted into ASTs until someone calls example
elsewhere in the shell.
When example
(the Murex function defined above) is executed the parser will then generate AST of the commands inside said function but not any blocks that are associated with those functions. eg the AST would look something like this:
[
{
"Command": "if",
"Parameters": [
"{ $ENVVAR }",
"then",
"{\n out 'foobar'\n }"
]
},
{
"Command": "out",
"Parameters": [
"Finished!"
]
}
]
Please note this is a mock JSON structure rather than a representation of the actual AST that would be created. Parameters are stored differently to allow infixing of variables; and there also needs to be data shared about how pipelining (eg stdout et al) is chained. What is being captured above is only the command name and parameters.
So when if
executes, the conditional (the first parameter) is then parsed and turned into ASTs and executed. Then the last parameter (the then block) is parsed and turned into ASTs, if the first conditional is true.
This sequence of parsing is defined within the if
builtin rather than Murex's parser. That means any code blocks are parsed only when a builtin specifically requests that they are executed.
With murex, there's no distinction between text and code. It's up to commands to determine if they want to execute a parameter as code or not (eg a curly brace block might be JSON).
See Also
- ANSI Constants: Infixed constants that return ANSI escape sequences
- Pipeline: Overview of what a "pipeline" is
- Schedulers: Overview of the different schedulers (or 'run modes') in Murex
%(Brace Quote)
: Initiates or terminates a string (variables expanded)%[]
Array Builder: Quickly generate arrays%{}
Object Builder: Quickly generate objects (dictionaries / maps){ Curly Brace }
: Initiates or terminates a code block
This document was generated from gen/parser/codeblock_doc.yaml.