mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix initialisation
This commit is contained in:
parent
e399794562
commit
48de367399
1 changed files with 2 additions and 2 deletions
|
@ -758,10 +758,10 @@ AstTypeReference::AstTypeReference(const Location& location, std::optional<AstNa
|
||||||
: AstType(ClassIndex(), location)
|
: AstType(ClassIndex(), location)
|
||||||
, hasParameterList(hasParameterList)
|
, hasParameterList(hasParameterList)
|
||||||
, prefix(prefix)
|
, prefix(prefix)
|
||||||
, name(name)
|
|
||||||
, parameters(parameters)
|
|
||||||
, prefixLocation(prefixLocation)
|
, prefixLocation(prefixLocation)
|
||||||
|
, name(name)
|
||||||
, nameLocation(nameLocation)
|
, nameLocation(nameLocation)
|
||||||
|
, parameters(parameters)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue