rdaum / moor

A system for building shared, programmable, online spaces. Compatible with LambdaMOO.
GNU General Public License v3.0
158 stars 8 forks source link

Language enhancement: Introduce lexical scopes to the MOO language: #281

Open github-actions[bot] opened 7 months ago

github-actions[bot] commented 7 months ago

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.
rdaum commented 1 month ago

Actual syntax is more conservative.

begin
  let a = 5;
  const b = 3;
  global c = 2;
  implicit_global = 1;
end
rdaum commented 4 weeks ago

Remaining work here is: