/** * Well known field names which (usually) have a semantic meaning */ export declare enum SemanticFieldNames { /** * Prototype, should always be a table */ PROTO = "proto", /** * Current scope */ THIS = "this", /** * Self parameter providing the target to functions */ SELF = "self", /** * Arguments passed to a function */ ARGS = "args", /** * Common name under which the first argument for a callback is stored into the scope */ IT = "it", /** * Field name for the documentation */ DOCS = "docs" } //# sourceMappingURL=semanticFieldNames.d.ts.map