mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 17:58:21 +00:00
Fix
This commit is contained in:
@@ -86,9 +86,9 @@ class Func {
|
||||
final List<Arg> argsType;
|
||||
//final bool isNullable;
|
||||
final String? annotation;
|
||||
|
||||
final bool isStatic;
|
||||
const Func(this.name, this.returnType, this.argsType,
|
||||
[this.annotation = null]);
|
||||
[this.annotation = null, this.isStatic = false]);
|
||||
}
|
||||
|
||||
class Arg {
|
||||
|
||||
@@ -221,6 +221,7 @@ class TypeTemplate {
|
||||
i,
|
||||
fi.name,
|
||||
false,
|
||||
fi.isStatic,
|
||||
args,
|
||||
RepresentationType.fromType(fi.returnType) ??
|
||||
RepresentationType.Void,
|
||||
|
||||
Reference in New Issue
Block a user