You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
B: classextends A { // Fewer parameters before the Func one init: func (callback: Func (Int))
}
B: classextends A { // More parameters before the Func oneinit: func (value, value2: Int, callback: Func (Int))
}
B: classextends A { // Same order of parameters as in parent classinit: func (callback: Func (Int), value: Int)
}
makes the problem go away, but with
B: classextends A { // More parameters AFTER the Func oneinit: func (value: Int, callback: Func (Int), value2: Int)
}
it still happens.
The text was updated successfully, but these errors were encountered:
davidhesselbom
changed the title
Overriding constructor with Func parameter can crash
Overriding constructor that takes Func parameter can cause rock to crash
Jan 16, 2015
davidhesselbom
changed the title
Overriding constructor that takes Func parameter can cause rock to crash
Inherited class constructor that takes Func parameter in wrong order can cause rock to crash
Jan 16, 2015
davidhesselbom
changed the title
Inherited class constructor that takes Func parameter in wrong order can cause rock to crash
Class constructor that takes Func parameter in wrong order in inherited class can cause rock to crash
Jan 16, 2015
davidhesselbom
changed the title
Class constructor that takes Func parameter in wrong order in inherited class can cause rock to crash
Constructor that takes Func parameter in wrong order in inherited class can cause rock to crash
Jan 16, 2015
I'm not sure this isn't covered in another issue somewhere, but
makes rock crash during the resolving stage:
Changing B to any of the following
makes the problem go away, but with
it still happens.
The text was updated successfully, but these errors were encountered: