moor icon indicating copy to clipboard operation
moor copied to clipboard

Language enhancement: Introduce lexical scopes to the MOO language:

Open github-actions[bot] opened this issue 4 months ago • 0 comments

add a 'with' keyword to the language which introduces a new scope, similar to ML's "let":

with x = 1 in

...

endlet

Multiple variables can be introduced at once:

with x = 1, y = 2 in ...

Variables not declared with 'with' are verb-scoped as they are now

'with' variables that shadow already-known verb-scoped variables override the verb-scope

Add LetBegin and LetEnd opcodes to the language.

Make the environment have a width, and expand and contract as scopes are entered and exited.

Likewise, Names in Program should be scope delimited somehow

/ The values of the variables currently in scope, by their offset.

https://github.com/rdaum/moor/blob/9922628e2a0cc8e4b73952a3a0a4dd185aab1daf/crates/kernel/src/vm/activation.rs#L71


    pub(crate) program: Program,
    /// The program counter.
    pub(crate) pc: usize,
    // TODO: Language enhancement: Introduce lexical scopes to the MOO language:
    //      add a 'with' keyword to the language which introduces a new scope, similar to ML's "let":
    //              with x = 1 in
    //                     ...
    //              endlet
    //      Multiple variables can be introduced at once:
    //              with x = 1, y = 2 in ...
    //      Variables not declared with 'with' are verb-scoped as they are now
    //      'with' variables that shadow already-known verb-scoped variables override the verb-scope
    //      Add LetBegin and LetEnd opcodes to the language.
    //      Make the environment have a width, and expand and contract as scopes are entered and exited.
    //      Likewise, Names in Program should be scope delimited somehow
    /// The values of the variables currently in scope, by their offset.
    pub(crate) environment: BitArray<Var, 256, Bitset16<16>>,
    /// The value stack.

github-actions[bot] avatar Feb 11 '24 15:02 github-actions[bot]