-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathember-4.10.0-Ember.json
More file actions
220 lines (220 loc) · 7.69 KB
/
ember-4.10.0-Ember.json
File metadata and controls
220 lines (220 loc) · 7.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
{
"data": {
"id": "ember-4.10.0-Ember",
"type": "class",
"attributes": {
"name": "Ember",
"shortname": "Ember",
"classitems": [],
"plugins": [],
"extensions": [],
"plugin_for": [],
"extension_for": [],
"module": "@ember/utils",
"namespace": "",
"methods": [
{
"file": "packages/@ember/-internals/meta/lib/meta.ts",
"line": 673,
"description": "Retrieves the meta hash for an object. If `writable` is true ensures the\nhash is writable for this object as well.\n\nThe meta object contains information about computed property descriptors as\nwell as any watched properties and other information. You generally will\nnot access this information directly but instead work with higher level\nmethods that manipulate this hash indirectly.",
"itemtype": "method",
"name": "meta",
"access": "private",
"tagname": "",
"params": [
{
"name": "obj",
"description": "The object to retrieve meta for",
"type": "Object"
},
{
"name": "writable",
"description": "Pass `false` if you do not intend to modify\n the meta hash, allowing the method to avoid making an unnecessary copy.",
"type": "Boolean",
"optional": true,
"optdefault": "true"
}
],
"return": {
"description": "the meta hash for an object",
"type": "Object"
},
"class": "Ember",
"module": "ember"
},
{
"file": "packages/@ember/-internals/utils/lib/inspect.ts",
"line": 15,
"description": "Convenience method to inspect an object. This method will attempt to\nconvert the object into a useful string description.\n\nIt is a pretty simple implementation. If you want something more robust,\nuse something like JSDump: https://github.com/NV/jsDump",
"itemtype": "method",
"name": "inspect",
"static": 1,
"params": [
{
"name": "obj",
"description": "The object you want to inspect.",
"type": "Object"
}
],
"return": {
"description": "A description of the object",
"type": "String"
},
"since": "1.4.0",
"access": "private",
"tagname": "",
"class": "Ember",
"module": "@ember/debug"
},
{
"file": "packages/@ember/-internals/utils/lib/invoke.ts",
"line": 1,
"description": "Checks to see if the `methodName` exists on the `obj`.\n\n```javascript\nlet foo = { bar: function() { return 'bar'; }, baz: null };\n\nEmber.canInvoke(foo, 'bar'); // true\nEmber.canInvoke(foo, 'baz'); // false\nEmber.canInvoke(foo, 'bat'); // false\n```",
"itemtype": "method",
"name": "canInvoke",
"params": [
{
"name": "obj",
"description": "The object to check for the method",
"type": "Object"
},
{
"name": "methodName",
"description": "The method name to check for",
"type": "String"
}
],
"return": {
"description": "",
"type": "Boolean"
},
"access": "private",
"tagname": "",
"class": "Ember",
"module": "@ember/debug"
},
{
"file": "packages/@ember/-internals/utils/lib/spec.ts",
"line": 1,
"description": "Returns whether Type(value) is Object.\n\nUseful for checking whether a value is a valid WeakMap key.\n\nRefs: https://tc39.github.io/ecma262/#sec-typeof-operator-runtime-semantics-evaluation\n https://tc39.github.io/ecma262/#sec-weakmap.prototype.set",
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "isObject",
"class": "Ember",
"module": "@ember/array"
},
{
"file": "packages/@ember/-internals/utils/lib/super.ts",
"line": 73,
"description": "Wraps the passed function so that `this._super` will point to the superFunc\nwhen the function is invoked. This is the primitive we use to implement\ncalls to super.",
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "wrap",
"params": [
{
"name": "func",
"description": "The function to call",
"type": "Function"
},
{
"name": "superFunc",
"description": "The super function.",
"type": "Function"
}
],
"return": {
"description": "wrapped function.",
"type": "Function"
},
"class": "Ember",
"module": "@ember/array"
},
{
"file": "packages/@ember/routing/lib/controller_for.ts",
"line": 8,
"description": "Finds a controller instance.",
"itemtype": "method",
"name": "controllerFor",
"access": "private",
"tagname": "",
"class": "Ember",
"module": "@ember/routing"
},
{
"file": "packages/@ember/routing/lib/generate_controller.ts",
"line": 11,
"description": "Generates a controller factory",
"itemtype": "method",
"name": "generateControllerFactory",
"access": "private",
"tagname": "",
"class": "Ember",
"module": "@ember/routing"
},
{
"file": "packages/@ember/routing/lib/generate_controller.ts",
"line": 52,
"description": "Generates and instantiates a controller extending from `controller:basic`\nif present, or `Controller` if not.",
"itemtype": "method",
"name": "generateController",
"access": "private",
"tagname": "",
"since": "1.3.0",
"class": "Ember",
"module": "@ember/routing"
}
],
"events": [],
"properties": [
{
"file": "packages/@ember/-internals/utils/lib/guid.ts",
"line": 26,
"description": "Prefix used for guids through out Ember.",
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "GUID_PREFIX",
"type": "String",
"final": 1,
"class": "Ember",
"module": "@ember/object"
},
{
"file": "packages/@ember/-internals/utils/lib/guid.ts",
"line": 39,
"description": "A unique key used to assign guids and other private metadata to objects.\nIf you inspect an object in your browser debugger you will often see these.\nThey can be safely ignored.\n\nOn browsers that support it, these properties are added with enumeration\ndisabled so they won't show up when you iterate over your properties.",
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "GUID_KEY",
"type": "String",
"final": 1,
"class": "Ember",
"module": "@ember/object"
}
]
},
"relationships": {
"parent-class": {
"data": null
},
"descendants": {
"data": []
},
"module": {
"data": {
"id": "ember-4.10.0-@ember/utils",
"type": "module"
}
},
"project-version": {
"data": {
"id": "ember-4.10.0",
"type": "project-version"
}
}
}
}
}