Parse ML function arguments, return statement operands, and for statement loop header.
Loop bounds and presumed to be constants for now and are stored in ForStmt as affine constant expressions. ML function arguments, return statement operands and loop variable name are dropped for now.
PiperOrigin-RevId: 205256208
diff --git a/lib/Parser/Token.h b/lib/Parser/Token.h
index 73baaac..f847bcf4 100644
--- a/lib/Parser/Token.h
+++ b/lib/Parser/Token.h
@@ -76,7 +76,7 @@
/// return None.
Optional<unsigned> getUnsignedIntegerValue() const;
- /// For an integer token, return its value as an int64_t. If it doesn't fit,
+ /// For an integer token, return its value as an uint64_t. If it doesn't fit,
/// return None.
Optional<uint64_t> getUInt64IntegerValue() const;