use of net.jangaroo.jooc.ast.PredefinedTypeDeclaration in project jangaroo-tools by CoreMedia.
the class JangarooParser method declareType.
private static void declareType(Scope scope, String identifier) {
IdeDeclaration decl = new PredefinedTypeDeclaration(identifier);
decl.scope(scope);
}
Aggregations