Skip to content

Custom js generator, dce and typedefs #9252

@benmerckx

Description

@benmerckx

When enabling DCE, a custom js generator receives only those concrete types that need to be generated. However it also receives every typedef included in the class path (even in unused modules). I'm generating Typescript definitions - and some of these typedefs reference concrete types that are not part of the generation (making Typescript upset). So I'm looking to either have unused typedefs not pass through to the generate call or for a way to check during generation if a typedef is in use?

#if macro
import haxe.macro.Compiler;
import haxe.macro.JSGenApi;
#end

typedef Unused = {a: Int}

class Main {
  #if macro
  static function generate(api: JSGenApi) {
    for (type in api.types)
      switch type {
        case TType(t, _): trace(t);
        default:
      }
  }
  public static function use() {
    Compiler.setCustomJSGenerator(generate);
  }
  #end
  static function main() {
    trace('hello');
  }
}
$ haxe --macro Main.use() --main Main --js out.js --dce full
Main.hx:13: Unused
Main.hx:13: Iterator
Main.hx:13: Iterable
Main.hx:13: KeyValueIterator
Main.hx:13: KeyValueIterable
Main.hx:13: js.lib.ObjectPrototype
Main.hx:13: js.lib.ObjectPropertyDescriptor

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions