Erick Tryzelaar wrote:
> Would it be LALR if we had a mandatory "end" but an optional thing 
> after, like these?
>
> module Act
>   class Base
>     def clone
>       stuff
>     end
>   end Base
> end
>
> module Act
>   class Base
>     def clone
>       stuff
>     end
>   end
> end Act
>
>   
What maple allows you do to would translate (in the above example) to:

module Act
  class Base
    def clone
      stuff
    end def
  end class
end module

where each of the keywords after end:
1) are optional
2) must match!

This has been liked by most users.

Jacques

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to