Remove outdated comment.

This commit is contained in:
Qi Xiao 2016-02-07 14:45:07 +01:00
parent 2296221e65
commit d4e8659853

View File

@ -618,9 +618,6 @@ func (cp *compiler) primary(n *parse.Primary) valuesOp {
case parse.Braced:
return cp.braced(n)
default:
// XXX: Primary types not yet implemented are just treated as
// barewords. Should report parser bug of bad PrimaryType after they
// have been implemented.
cp.errorf(n.Begin(), "bad PrimaryType; parser bug")
return literalStr(n.SourceText())
}