apoch / epoch-language

Home of the Epoch Programming Language Project
Other
72 stars 3 forks source link

Chained entity terminators are not handled correctly #95

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
It is possible to parse and attempt to execute the following malformed code:

if(foo == 2)
{
    debugwritestring("Two")
}
else
{
    debugwritestring("Other")
}
elseif(foo == 3)
{
    debugwritestring("Three")
}

This should be handled and prevented during semantic analysis.

Original issue reported on code.google.com by don.ap...@gmail.com on 2 Aug 2011 at 11:53

GoogleCodeExporter commented 9 years ago
Assigned to Release 12.

Original comment by don.ap...@gmail.com on 2 Apr 2012 at 4:13

GoogleCodeExporter commented 9 years ago
On further consideration, I really don't care.

Original comment by don.ap...@gmail.com on 13 Apr 2012 at 9:23