mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
fix: classes dont have commas
This commit is contained in:
parent
dac61aa89f
commit
9089c3b161
1 changed files with 3 additions and 3 deletions
|
@ -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: {
|
||||
|
|
Loading…
Add table
Reference in a new issue