131 lines
4.5 KiB
Java
131 lines
4.5 KiB
Java
|
/*
|
||
|
* Copyright 2006 The Closure Compiler Authors.
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package com.google.javascript.jscomp;
|
||
|
|
||
|
/**
|
||
|
* Unit test for {@link NameAnonymousFunctionsTest}.
|
||
|
*
|
||
|
*/
|
||
|
public class NameAnonymousFunctionsTest extends CompilerTestCase {
|
||
|
|
||
|
private static final String EXTERNS = "var document;";
|
||
|
|
||
|
public NameAnonymousFunctionsTest() {
|
||
|
super(EXTERNS);
|
||
|
}
|
||
|
|
||
|
@Override public CompilerPass getProcessor(Compiler compiler) {
|
||
|
return new NameAnonymousFunctions(compiler);
|
||
|
}
|
||
|
|
||
|
public void testSimpleVarAssignment() {
|
||
|
test("var a = function() { return 1; }",
|
||
|
"var a = function $a$() { return 1; }");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToProperty() {
|
||
|
test("var a = {}; a.b = function() { return 1; }",
|
||
|
"var a = {}; a.b = function $a$b$() { return 1; }");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToPrototype() {
|
||
|
test("function a() {} a.prototype.b = function() { return 1; };",
|
||
|
"function a() {} " +
|
||
|
"a.prototype.b = function $a$$b$() { return 1; };");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToPrototype2() {
|
||
|
test("var a = {}; " +
|
||
|
"a.b = function() {}; " +
|
||
|
"a.b.prototype.c = function() { return 1; };",
|
||
|
"var a = {}; " +
|
||
|
"a.b = function $a$b$() {}; " +
|
||
|
"a.b.prototype.c = function $a$b$$c$() { return 1; };");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToPrototype3() {
|
||
|
test("function a() {} a.prototype['b'] = function() { return 1; };",
|
||
|
"function a() {} " +
|
||
|
"a.prototype['b'] = function $a$$b$() { return 1; };");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToPrototype4() {
|
||
|
test("function a() {} a['prototype']['b'] = function() { return 1; };",
|
||
|
"function a() {} " +
|
||
|
"a['prototype']['b'] = function $a$$b$() { return 1; };");
|
||
|
}
|
||
|
|
||
|
public void testPrototypeInitializer() {
|
||
|
test("function a(){} a.prototype = {b: function() { return 1; }};",
|
||
|
"function a(){} " +
|
||
|
"a.prototype = {b: function $a$$b$() { return 1; }};");
|
||
|
}
|
||
|
|
||
|
public void testMultiplePrototypeInitializer() {
|
||
|
test("function a(){} a.prototype = {b: function() { return 1; }, " +
|
||
|
"c: function() { return 2; }};",
|
||
|
"function a(){} " +
|
||
|
"a.prototype = {b: function $a$$b$() { return 1; }," +
|
||
|
"c: function $a$$c$() { return 2; }};");
|
||
|
}
|
||
|
|
||
|
public void testRecursiveObjectLiteral() {
|
||
|
test("function a(){} a.prototype = {b: {c: function() { return 1; }}}",
|
||
|
"function a(){}a.prototype={b:{c:function $a$$b$c$(){return 1}}}");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToPropertyOfCallReturnValue() {
|
||
|
test("document.getElementById('x').onClick = function() {};",
|
||
|
"document.getElementById('x').onClick = " +
|
||
|
"function $document$getElementById$onClick$() {};");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToPropertyOfArrayElement() {
|
||
|
test("var a = {}; a.b = [{}]; a.b[0].c = function() {};",
|
||
|
"var a = {}; a.b = [{}]; a.b[0].c = function $a$b$0$c$() {};");
|
||
|
test("var a = {b: {'c': {}}}; a.b['c'].d = function() {};",
|
||
|
"var a = {b: {'c': {}}}; a.b['c'].d = function $a$b$c$d$() {};");
|
||
|
test("var a = {b: {'c': {}}}; a.b[x()].d = function() {};",
|
||
|
"var a = {b: {'c': {}}}; a.b[x()].d = function $a$b$x$d$() {};");
|
||
|
}
|
||
|
|
||
|
public void testAssignmentToGetElem() {
|
||
|
test("function f() {win['x' + this.id] = function(a){};}",
|
||
|
"function f() {win['x' + this.id] = function $win$x$this$id$(a){};}");
|
||
|
}
|
||
|
|
||
|
public void testGetElemWithDashes() {
|
||
|
test("var foo = {}; foo['-'] = function() {};",
|
||
|
"var foo = {}; foo['-'] = function $foo$__0$() {};");
|
||
|
}
|
||
|
|
||
|
public void testWhatCausedIeToFail() {
|
||
|
// If the function was given the name main, for some reason IE failed to
|
||
|
// handle this case properly. That's why we give it the name $main$. FF
|
||
|
// handled the case fine.
|
||
|
test("var main;" +
|
||
|
"(function() {" +
|
||
|
" main = function() {" +
|
||
|
" return 5;" +
|
||
|
" };" +
|
||
|
"})();" +
|
||
|
"" +
|
||
|
"main();",
|
||
|
"var main;(function(){main=function $main$(){return 5}})();main()");
|
||
|
}
|
||
|
}
|