Sign in
apache
/
netbeans
/
refs/heads/release190
/
.
/
webcommon
/
javascript2.model
/
test
/
unit
/
data
/
testfiles
/
hints
/
issue252022.js
blob: b010943266fe54f2ff345cc4fc424ae43896882d [
file
] [
log
] [
blame
]
/**
* @constructor
*/
var
MyLib
=
new
function
MyLib
()
{
function
fn1
()
{
fn2
().
toLowerCase
();
// test
fn2
().
toLowerCase
();
return
""
;
}
/**
* @returns {string}
*/
function
fn2
()
{
return
""
;
}
};