vet all core packages

This commit is contained in:
gingerBill
2021-01-09 23:43:34 +00:00
parent 9e8c46b8de
commit 3bcccf88d5
7 changed files with 5 additions and 10 deletions
+2 -2
View File
@@ -677,9 +677,9 @@ match_values :: proc(left, right: ^Value) -> bool {
return false;
}
calculate_binary_value :: proc(p: ^Parser, op: Kind, a, b: Value) -> (Value, bool) {
calculate_binary_value :: proc(p: ^Parser, op: Kind, a_, b_: Value) -> (Value, bool) {
// TODO(bill): Calculate value as you go!
x, y := a, b;
x, y := a_, b_;
match_values(&x, &y);