diff --git a/language_spec.md b/language_spec.md index 0e45dbf4ac71ae535689eb6b144b172bfd766e79..bfe27ca03b681309b0fe025e69a98d80caf91ab0 100644 --- a/language_spec.md +++ b/language_spec.md @@ -73,7 +73,6 @@ int-hex-constant = "0x" int-hex-char (int-hex-char | "_")* // 0xFEFE_1337 int-constant = int-bin-constant | int-oct-constant | int-dec-constant | int-hex-constant // Floating point numbers -// TODO: Maybe support exponential notation? Seems silly for a networking // language, but might be useful? float-constant = DIGIT* "." DIGIT+ @@ -264,8 +263,6 @@ stmt = block | "new" cwb method-expr cw ";" | expr cw ";" -// TODO: Add all the other expressions -// TODO: Also: add struct construction and enum construction method-params-list = "(" cw (expr (cw "," cw expr)* )? cw ")" method-expr = method cw method-params-list