代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/332387/3398904
js prototype_nested.js
/** @constructor */
function Word() {
}
Word.prototype.reverse = function() {
}
Word.prototype.reverse.utf8 = function() {
}
www.eeworm.com/read/332387/3398908
js functions_nested.js
/** @constructor */
function Zop() {
}
/**
@class
*/
Foo = function(id) {
// this is a bit twisted, but if you call Foo() you will then
// modify Foo(). This is kinda, sorta non-insane, because yo
www.eeworm.com/read/332387/3398910
js namespace_nested.js
/**
@namespace This is the first namespace.
*/
ns1 = {};
/**
This is the second namespace.
@namespace
*/
ns1.ns2 = {};
/**
This part of ns1.ns2
@constructor
*/
ns1.ns2.Function1 = function()