Giter Club home page Giter Club logo

Comments (5)

mprobst avatar mprobst commented on July 19, 2024

Not sure what you mean by "attach properties".

There are two issues in the code above: goog.string.Unicode is not a valid variable identifier, and if this module is providing goog:goog.string.Unicode it should do an export default var ....

The latter is a bit muddy on the Closure side as there is no syntax to express the case of exporting an object that has properties and is exports vs a module that exports multiple things separately (functions, vars, etc). We should be able to figure that out based on the goog.provides though.

from clutz.

alexeagle avatar alexeagle commented on July 19, 2024

I'm not sure either - we looked at this one together and you said a bunch of stuff was missing from the string.js because some properties are not present. Like where is startsWith ?

from clutz.

mprobst avatar mprobst commented on July 19, 2024

I see. My understanding is that the problem is that goog.string does this:

goog.provide('goog.string');

goog.string.a = function() {};
goog.string.b = function() {};
...

Apparently c2dts doesn't handle that for some reason?

from clutz.

alexeagle avatar alexeagle commented on July 19, 2024

Problem is related to turning on closure pass. Instead of a null symbol.getType(), it is wrapped as an object literal type.

from clutz.

alexeagle avatar alexeagle commented on July 19, 2024

A simple repro of the current bug is

goog.provide('a');

/**
 * @param {number=} opt_precision
 * @return {string}
 */
a.b = function(opt_precision) {
    return goog.isDef(opt_precision) ? a.c(opt_precision) : "undef";
};

/**
 * @param {number} s
 * @return {string}
 */
a.c = function(s) {
    return String(s);
};

If I run this through current closure-to-dts at head, I get

java.lang.AssertionError: JSC_TYPE_MISMATCH. actual parameter 1 of a.c does not match formal parameter
found   : (number|undefined)
required: number at test.js line 8 : 43

from clutz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.