Rename the components

This commit is contained in:
2026-06-11 08:56:40 +08:00
parent 1a38577817
commit 4fcd58b5ed
24 changed files with 116 additions and 74 deletions
+13
View File
@@ -0,0 +1,13 @@
/** @define {boolean} */
var DEBUG = false;
function internalNameThatShouldDisappear(name) {
if (DEBUG) {
console.log('debug mode');
}
return 'hello ' + name;
}
window.demoHello = function(name) {
return internalNameThatShouldDisappear(name);
};