GaiaXAndroidQuickJS/src/main/java/com/alibaba/gaiax/quickjs/Method.java [35:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Method(Type returnType, String name, Type[] parameterTypes) {
        this.returnType = canonicalize(returnType);
        this.name = name;
        this.parameterTypes = new Type[parameterTypes.length];
        for (int i = 0; i < parameterTypes.length; i++) {
            this.parameterTypes[i] = canonicalize(parameterTypes[i]);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



GaiaXAndroidJS/src/main/kotlin/com/alibaba/gaiax/js/support/GXMethod.java [35:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public GXMethod(Type returnType, String name, Type[] parameterTypes) {
        this.returnType = canonicalize(returnType);
        this.name = name;
        this.parameterTypes = new Type[parameterTypes.length];
        for (int i = 0; i < parameterTypes.length; i++) {
            this.parameterTypes[i] = canonicalize(parameterTypes[i]);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



