fix: classes dont have commas

This commit is contained in:
Jack 2024-11-15 19:20:55 -06:00 committed by GitHub
parent dac61aa89f
commit 9089c3b161
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -456,9 +456,9 @@ static const std::string kBuiltinDefinitionVectorSrc = R"BUILTIN_SRC(
-- TODO: this will be replaced with a built-in primitive type
declare class vector
x: number,
y: number,
z: number,
x: number
y: number
z: number
end
declare vector: {