Commit e23d68a6 by Zachary Snow

discard const keyword

parent 910282fb
...@@ -608,6 +608,7 @@ DeclOrStmtToken :: { DeclToken } ...@@ -608,6 +608,7 @@ DeclOrStmtToken :: { DeclToken }
| Signing { DTSigning $1 } | Signing { DTSigning $1 }
| Lifetime { DTLifetime $1 } | Lifetime { DTLifetime $1 }
| Identifier "::" Identifier { DTPSIdent $1 $3 } | Identifier "::" Identifier { DTPSIdent $1 $3 }
| "const" PartialType { DTType $2 }
| "{" StreamOp StreamSize Concat "}" { DTStream $2 $3 (map toLHS $4) } | "{" StreamOp StreamSize Concat "}" { DTStream $2 $3 (map toLHS $4) }
| "{" StreamOp Concat "}" { DTStream $2 (Number "1") (map toLHS $3) } | "{" StreamOp Concat "}" { DTStream $2 (Number "1") (map toLHS $3) }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment