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
interface TextBase {
void insertFormattedText(int offset, Text text)
}
interface Text extends TextBase {
}
This generates typedefs on the caller side where TextBase refers to Text (of course), and that is not allowed in Haxe. Spaghetti should throw an error in this case.
The text was updated successfully, but these errors were encountered:
Example:
This generates typedefs on the caller side where
TextBase
refers toText
(of course), and that is not allowed in Haxe. Spaghetti should throw an error in this case.The text was updated successfully, but these errors were encountered: