Re: [Tutor] a bug I cannot solve myself ;-)

2010-03-25 Thread bob gailer
On 3/25/2010 5:39 AM, spir ☣ wrote: Hello, I'm writing a kind of language simulation. Here, an expression like "a#3.b" maps to a NamedData node, with an attribute terms=[('.','a'),('#',3),('.'''b')]. (The lang uses '#' instead of "[...]" for item indexing.) When this node is "run", the source

Re: [Tutor] a bug I cannot solve myself ;-)

2010-03-25 Thread Andre Engels
2010/3/25 spir ☣ : > Hello, > > > I'm writing a kind of language simulation. Here, an expression like "a#3.b" > maps to a NamedData node, with an attribute > terms=[('.','a'),('#',3),('.'''b')]. > (The lang uses '#' instead of "[...]" for item indexing.) > When this node is "run", the source code

[Tutor] a bug I cannot solve myself ;-)

2010-03-25 Thread spir ☣
Hello, I'm writing a kind of language simulation. Here, an expression like "a#3.b" maps to a NamedData node, with an attribute terms=[('.','a'),('#',3),('.'''b')]. (The lang uses '#' instead of "[...]" for item indexing.) When this node is "run", the source code maps to a name lookup operation i