Fix strconv.parse_ usage across other packages

This commit is contained in:
gingerBill
2020-05-09 11:54:36 +01:00
parent dc1b3cc563
commit e8f2fb58d9
2 changed files with 8 additions and 4 deletions
+4 -2
View File
@@ -85,11 +85,13 @@ parse_value :: proc(p: ^Parser) -> (value: Value, err: Error) {
return;
case Kind.Integer:
value.value = Integer(strconv.parse_i64(token.text));
i, _ := strconv.parse_i64(token.text);
value.value = Integer(i);
advance_token(p);
return;
case Kind.Float:
value.value = Float(strconv.parse_f64(token.text));
f, _ := strconv.parse_f64(token.text);
value.value = Float(f);
advance_token(p);
return;
case Kind.String: