Skip to content
Snippets Groups Projects
Verified Commit 110934b8 authored by Miles Vella's avatar Miles Vella
Browse files

add missing range() to freetype constructor template

parent 474b63c0
No related branches found
No related tags found
No related merge requests found
Pipeline #151996 passed
......@@ -87,6 +87,7 @@ public class ImportGenerator {
importBFreetype();
importFreetype((FreetypeType) type);
importBBoolean();
importSetType(new SetType(null));
} else if (type != null && !(type instanceof UntypedType)) {
// null and untyped slip through sometimes, just ignore those
throw new IllegalArgumentException("Unsupported type: " + type);
......
......@@ -744,6 +744,10 @@ public static final class <name>Constructor implements BObject {
return new BBoolean(o instanceof <name>);
}
public BSet\<<freetype>\> range() {
throw new UnsupportedOperationException("freetype iteration not supported");
}
public BBoolean equal(<name>Constructor o) {
return new BBoolean(true);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment