-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
duplicate_definition for internal classes with throwing constructors #1547
Comments
parzysty
added a commit
to parzysty/gluecodium
that referenced
this issue
Aug 21, 2023
Added ffi prefix to name of functions handling error and return type retrival from throwing functions. This prevent duplicate_definition error if more than one class has those function inside one file, for example in case of multiple internall classes. Relates-To: heremaps#1547
parzysty
added a commit
to parzysty/gluecodium
that referenced
this issue
Aug 21, 2023
Added ffi prefix to name of functions handling error and return type retrival from throwing functions. This prevent duplicate_definition error if more than one class has those function inside one file, for example in case of multiple internall classes. Relates-To: heremaps#1547 Signed-off-by: Rafal Parzych <[email protected]>
parzysty
added a commit
to parzysty/gluecodium
that referenced
this issue
Aug 22, 2023
Added ffi prefix to name of functions handling error and return type retrival from throwing functions. This prevent duplicate_definition error if more than one class has those function inside one file, for example in case of multiple internall classes. Relates-To: heremaps#1547 Signed-off-by: Rafal Parzych <[email protected]>
parzysty
added a commit
to parzysty/gluecodium
that referenced
this issue
Aug 23, 2023
Added ffi prefix to name of functions handling error and return type retrival from throwing functions. This prevent duplicate_definition error if more than one class has those function inside one file, for example in case of multiple internall classes. Relates-To: heremaps#1547 Signed-off-by: Rafal Parzych <[email protected]>
parzysty
added a commit
to parzysty/gluecodium
that referenced
this issue
Aug 23, 2023
Added ffi prefix to name of functions handling error and return type retrival from throwing functions. This prevent duplicate_definition error if more than one class has those function inside one file, for example in case of multiple internall classes. Relates-To: heremaps#1547 Signed-off-by: Rafal Parzych <[email protected]>
parzysty
added a commit
to parzysty/gluecodium
that referenced
this issue
Aug 23, 2023
Added ffi prefix to name of functions handling error and return type retrival from throwing functions. This prevent duplicate_definition error if more than one class has those function inside one file, for example in case of multiple internall classes. Relates-To: heremaps#1547 Signed-off-by: Rafal Parzych <[email protected]>
parzysty
added a commit
to parzysty/gluecodium
that referenced
this issue
Aug 24, 2023
Added ffi prefix to name of functions handling error and return type retrival from throwing functions. This prevent duplicate_definition error if more than one class has those function inside one file, for example in case of multiple internall classes. Relates-To: heremaps#1547 Signed-off-by: Rafal Parzych <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For following lime file
`
package smoke
open class ExternalClass {
enum ErrorEnum {
NONE,
CRASHED
}
}
`
generated dart code contains multiple declaration of
and
which fail to compile
The text was updated successfully, but these errors were encountered: