1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-12 20:27:30 +08:00

Fix: parse_statement.go:184: function ends without a return statement

This commit is contained in:
Robert Krimen 2013-05-02 23:17:18 +02:00
parent 6c5259a651
commit 2e0fe63a64

View File

@ -193,6 +193,7 @@ func (self *_parser) parseInIteration(parse func() _node) []_node {
default:
return []_node{node}
}
panic("")
}
func (self *_parser) ParseDoWhile() _node {