質問編集履歴
1
この例において仮引数が不要だったため。
title
CHANGED
File without changes
|
body
CHANGED
@@ -94,10 +94,10 @@
|
|
94
94
|
|
95
95
|
(function () {
|
96
96
|
function methodC() {
|
97
|
-
|
97
|
+
//
|
98
98
|
}
|
99
99
|
function methodD() {
|
100
|
-
|
100
|
+
//
|
101
101
|
}
|
102
102
|
ClassA.namespace("space_B").method_CD = {
|
103
103
|
methodC: methodC,
|
@@ -132,11 +132,11 @@
|
|
132
132
|
|
133
133
|
(function () { //クラス名の追加、削除
|
134
134
|
var space_A = ClassA.namespace("space_A");
|
135
|
-
function methodA(
|
135
|
+
function methodA() {
|
136
|
-
|
136
|
+
//
|
137
137
|
}
|
138
|
-
function methodB(
|
138
|
+
function methodB() {
|
139
|
-
|
139
|
+
//
|
140
140
|
}
|
141
141
|
space_A.methodA = methodA;
|
142
142
|
space_A.methodB = methodB;
|