Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Duplicate declarations #52

Closed
alexeagle opened this issue Aug 27, 2015 · 0 comments
Closed

Duplicate declarations #52

alexeagle opened this issue Aug 27, 2015 · 0 comments
Assignees

Comments

@alexeagle
Copy link
Contributor

goog.provide("goog.fx.dom");
goog.provide("goog.fx.dom.ColorTransform");

/** @type {number} */
goog.fx.dom.a = 1;

/** @constructor */
goog.fx.dom.ColorTransform = function() {}

we visit the ColorTransform symbol twice: once for the first provide (which is non-default so we traverse all the symbols) and again for the second provide, where it is the default.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants