Google Closure Tools is a set of tools to help developers build rich web applications with JavaScript.
0
votes
1answer
19 views
Google closure compiler usage webstorm
I like to use the google closure compiler in webstorm. I've downloaded it over npm.
npm install closure
Never really used node and i don't know how to execute the commandline. Please do not blame ...
1
vote
1answer
37 views
How to make closure compiler to remove all dead code with advanced optimization in larger projects?
The following code:
function f(a) { a.a = 5; return a; }
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() ...
0
votes
1answer
39 views
self invoking anonymous function and the Closure Compiler
I am migrating some javascript code to the Google Closure Compiler. This is the first time I have done it.
Some parts of my code have self invoking anonymous functions like so
(function($) {
...
0
votes
1answer
38 views
Javascript Module Pattern and Google Closure Compiler
I am using the Google Closure Compiler on a Drupal project right now. My Javascript is structured using the Javascript Module Pattern.
Because of the way Drupal works, I am compiling each JS file ...
1
vote
1answer
50 views
Closure-Compiler externs for AngularJS ui-router
Are there closure compiler externs available for AngularJS's ui-router?
Is there an appropriate place to ask for these from the closure compiler (or Angular-ui) team?
0
votes
1answer
20 views
Rails, sprockets, google closure and advanced opts
I've added the closure-compiler gem to my Gemfile and set
config.assets.js_compressor = :closure
in the config/environments/production.rb file.
I believe this defaults to using the ...
1
vote
1answer
37 views
ClosureCompiler removing dead code with advanced optimizations
The following code:
(function() {
var hello = function(name) {
alert('Hello, ' + name);
}
hello('New user');
})();
with ADVANCED_OPTIMIZATIONS is compiled to:
alert("Hello, New user");
But ...
0
votes
1answer
44 views
How to make Jquery work with google closure compiler
I have been going through all the posts related to GCC with JQuery but unable to find the solution.
Is JQuery still not compatible to work with GCC? If not can you please refer to the appropriate link ...
0
votes
0answers
29 views
WIKI: How to use Lime (how to use closure-compiler with 3rd party (closure) libraries)
The following post inspired me to have a look at limeJS, as a side project I'm working on and off an a Yatzee game (mostly off) and thought that might be a nice library to use.
As a beginner in ...
0
votes
0answers
28 views
Logging in google closure and dumping objects to console like console.log(myObject)
I like to dump objects to console sometimes so I can click on it and inspect it. For example:
console.log(document.body);
In closere it seems the logs log everything to console under every group ...
2
votes
2answers
56 views
Improved JavaScript Building process
I am using play framework with static assets only, so I write my Javascripts and CSS files directly and test them in the browser (firebug console). Due to the fact that I am messing around with typos ...
4
votes
2answers
55 views
Why are some browser-native global objects written as window.object but others just as object?
Some browser-native global objects are written with window and others without.
window.setTimeout
window.getComputedStyle
JSON
decodeURIComponent
Why? What's the difference? This returns true for ...
1
vote
2answers
42 views
jQuery prop() and Google Closure Compiler
I'm using google closure compiler and I've been getting a warming that I don't understand. I need to test if a radio button is checked or not so I have the following code:
// ==ClosureCompiler==
// ...
1
vote
1answer
48 views
Buggy code after closure compile
I have several objects; one is called DomDependent one is called WorkFlow one is called mediator.
The domdependent has the following code:
myApp.DomDependent.attachEvents=function(){
...
1
vote
1answer
33 views
Why does Closure Compiler override a short var ref. to a 'this' keyword and restore 'this'? [duplicate]
I am testing some code using the Google Closure Compiler with simple optimization, and to my surprise a function such as:
window.navigator.detect = function() {
var t = this,
a = ...
0
votes
1answer
30 views
Type checking with closure compiler not implicitly on?
I am compiling files and get working compiled code but the annotations seem to be completely ignored; no warnings no errors. Using calcdeps.py to compile my code with the following command:
set ...
2
votes
2answers
48 views
Rewriting a property named “default” with Google Closure Templates
In the data that I send to a Google Closure template, I have a property named default. I plan on compiling both the JavaScript code and the code generated by SoyToJsSrcCompiler using the Google ...
0
votes
1answer
44 views
Sending compiled objects to Closure Templates
If I call a template from JavaScript with:
namespace.template(record);
where record is an instance of:
/** @typedef {{var: string}} */
and I use the Google Closure Compiler in advanced mode, ...
0
votes
0answers
86 views
properties file for Closure-Compiler-ant-task
I am using closure compiler to minify javascript via the ant task. My build file is getting cluttered. Also, I am not minifying the javascript files in dev environment. Currently I am declaring the ...
0
votes
2answers
69 views
Closure Compiler (advanced mode) — How to design classes?
I have a class that has roughly this structure:
function MyClass() {
// constructur stuff
}
MyClass.prototype.myFunc = function () {
// example function
};
MyClass.myStaticFunc = function ...
0
votes
1answer
28 views
closure compiler and closure inspector
I am reading an old book on google closure and it tells me about debugging code using closure inspector. The following page tells me that it's depreciated:
...
0
votes
1answer
31 views
Preserve already minified code fragments in Google Closure Compiler
I have some code, that I want to run through Google Closure Compiler.
The problem, however, is, that besides my own code, there is a fragment of already minified code, which I can't get the original ...
0
votes
2answers
46 views
More Granular Closure Compiler Flags?
I am using closure compiler to minfiy and concatenate my scripts and I would like to use the ADVANCED_OPTIMIZATIONS flag to get even more minifying magic out of it. However some of the scripts I have ...
2
votes
2answers
79 views
Compressing 'public' identifiers
Before compiler:
function Foo(){
this.init = function(){
var bar = new Bar();
bar.init();
};
}
function Bar(){
this.init = function(){
console.log('Hello');
...
3
votes
4answers
145 views
Organize and merge JS files, Google Closure?
I'm trying to merge all my plugins so I can change from this:
<html>
<head>
</head>
<body>
<script ...
0
votes
1answer
50 views
Closure goog.require. Compile error
I use Google closure library and compiler in my project.
I get strange error on next string:
if (!properties.name) {
throw {message: 'Widget name expected'};
}
properties.name = ...
1
vote
1answer
57 views
How to workaround renaming of object properties in Closure Compiler?
I have a JS library that uses has something like the following method:
this.on('doAction', function (args) {
console.log(args.name);
console.log(args.arg1 + ' ' 9 args.arg2);
});
...
0
votes
1answer
39 views
Is it possible to compile WebDriverJS without minimizing the code by Google Closure Compiler?
I need to modify WebDriverJS for my purposes. The compiled source is giving me a hard time debugging, though. Describing function names and comments would help me out big time! So I was wondering ...
1
vote
2answers
70 views
How to rename/keep the callback methods
I have a function that checks that the callback methods within an object exist. Currently the Closure Compiler renames the methods (onClickDisplay and onCloseHide) so all the checks in ...
0
votes
2answers
46 views
Export property of an object
How do I export the method of an object to call externally in the HTML page.
The JavaScript code:
my.namespace.FeedbackController = Class.create();
...
0
votes
3answers
96 views
Closure compiler mixes variable names
I have a problem where the Closure Compiler renames a global variable something like x.sa.xa but in all function where that global variable is referenced the compiler renames it something else like ...
1
vote
1answer
72 views
Google Closure requires RequestFilter and BlockingResponse types during chrome extension compiling. How to create such types?
I have an issue while compiling chrome.webRequest.onBeforeRequest.addListener code line in the Google Closure Compiler.
I took the code example from CatBlock extension in samples ...
1
vote
2answers
49 views
Implementation of JavaScript Class that works with Closure Compiler
Is there any implementation of class-like inheritance for JavaScript that works with Closure Compiler's ADVANCED_OPTIMIZATIONS?
It looks like John Resig's implementation does not.
2
votes
1answer
42 views
What's the correct casing to use for jsDoc comments?
I've recently started using jsdoc comments for documenting our javascript code, however I'm finding conflicting examples of the usage of the @param tag.
See ...
0
votes
1answer
49 views
How to compile several files to the same ones
I know that Google Closure Compiler allows me to compile several files into a single one like the following:
java -jar compiler.jar --js assets/js/file1.js
assets/js/file2.js --js_output_file ...
2
votes
2answers
90 views
google-closure compiler advanced optimization is munging navigator.battery.level causing TypeError
I'm using ClojureScript to retrieve battery levels with:
navigator.battery.level
Which works fine when using the simple and whitespace optimization. But when using advanced optimization mode the ...
0
votes
1answer
38 views
Reduce closure compiler jvm startup tiime
Context: continuous integration with git
I have this simple shell script:
#!/bin/sh
files=`find $1 -type f -name "*.js"`
for i in $files;
do
echo "closure compile: $i"
java -client -jar ...
0
votes
0answers
52 views
Commit an Eclipse Derived File to Subversion
I have a Dynamic Web Project in Eclipse that uses a custom Eclipse builder to compress all of my javascript and css files (With the Google Closure Compiler). The compressed production.js and ...
1
vote
2answers
107 views
Annotating JavaScript for the Closure Compiler questions
I have the following typedef in an externs file:
/** @typedef ({eventNameArray: Array.<string>,eventArrayIndex: number}) */
var triggerNextData;
Would like it to be used as a passed parameter ...
2
votes
1answer
61 views
Using Plovr to compile modules
I am trying to compile my JavaScript files using Plovr as defined in the config file below:
{
"id": "hello_demo",
"paths": ".",
"closure-library": "closure-library/closure/goog/",
"mode": ...
0
votes
1answer
47 views
Is there a way to have closure compiler warn about passed variables (strong type) AND use jquery?
I have a simple example:
var obj = {
/**
* @param {number} inp
* @returns {number} returning number plus one
*/
func: function(inp) {
return inp++;
},
c: 'hello',
q: null
};
...
0
votes
0answers
68 views
gjslint not reporting any error on file without jsdoc whatsoever
I read somewhere that with jsdoc in your JavaScript and the google closure tool gjslint you can strongly type your javascript. It's not really strongly typed but the tool will report on uncommented ...
0
votes
0answers
90 views
Document properties without a value in JSDoc3
I'm using Jsdoc3 to document my JavaScript project. I'm also using the Google Closure Compiler and Google Closure Library.
Some of the properties on my classes start out as undefined, and are later ...
0
votes
2answers
77 views
Disable creation of report.txt while using Google Closure Compiler with Grunt JS
To minify and obfuscate my JS code I'm trying to use Grunt's closure-compiler plugin.
I'm perfectly happy with the result, but after running Grunt I get project.min.js.report.txt file in the output ...
0
votes
0answers
40 views
Annotate parameter as function accepting several types as params for closure compiler
I want to annotate a parameter to a method call to be a function accepting two parameters, first being Error or null and second being an Object or Array of objects. However I seem to not be able to ...
1
vote
0answers
32 views
Passing custom build options to closure when building with stealjs
I am using JavascriptMVC to build an app with StealJS build functionality. This is my build.js:
load("steal/rhino/rhino.js");
...
0
votes
0answers
99 views
optimizable javascript library for minification AND dead code elimination [closed]
I have been looking for a "suckless" javascript library. One that is designed to be
used with a compiler to eliminate dead code (such as the closure compiler) not just minification, obfuscation and ...
0
votes
1answer
120 views
Google closure compiler application using multiple files and how not to print standard output
I'm using Google closure compiler application and can't figure out which of the following commands from the help menu would turn off the printing of standard output.
I'm combining multiple js files:
...
1
vote
2answers
112 views
Improper use of “this.” in javascript
I am defining a simple object "Browser" which is allowing to display "previous" and "next" image from a list.
function Browser(image, elements) {
this.current = 0;
this.image = image;
...
1
vote
2answers
113 views
suppress suspicious code in one function
I'm getting some suspicious code warnings in one function. I want to suppress warning errors of type suspiciousCode in that function - not the whole file.
Google closure wiki tells me to use ...



