-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathASDocClassField.js
More file actions
62 lines (50 loc) · 1.29 KB
/
Copy pathASDocClassField.js
File metadata and controls
62 lines (50 loc) · 1.29 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
/**
* Generated by Apache Royale Compiler from ASDocClassField.as
* ASDocClassField
*
* @fileoverview
*
* @suppress {missingRequire|checkTypes|accessControls}
*/
goog.provide('ASDocClassField');
/* Royale Dependency List: */
goog.require('ASDocClassFunction');
/**
* @constructor
* @extends {ASDocClassFunction}
*/
ASDocClassField = function() {
ASDocClassField.base(this, 'constructor');
};
goog.inherits(ASDocClassField, ASDocClassFunction);
/**
* @nocollapse
* @const
* @type {string}
*/
ASDocClassField.key = "bindable:object;deprecated:object;description:string;details:object;namespace:string;qname:string;return:string;tags:object;type:string";
/**
* Metadata
*
* @type {Object.<string, Array.<Object>>}
*/
ASDocClassField.prototype.ROYALE_CLASS_INFO = { names: [{ name: 'ASDocClassField', qName: 'ASDocClassField', kind: 'class' }] };
/**
* Reflection
*
* @return {Object.<string, Function>}
*/
ASDocClassField.prototype.ROYALE_REFLECTION_INFO = function () {
return {};
};
/**
* @const
* @type {number}
*/
ASDocClassField.prototype.ROYALE_COMPILE_FLAGS = 9;
/**
* Provide reflection support for distinguishing dynamic fields on class object (static)
* @const
* @type {Array<string>}
*/
ASDocClassField.prototype.ROYALE_INITIAL_STATICS = Object.keys(ASDocClassField);