Class ParameterField
A field induced by an initializing constructor parameter.
Example:
class C {
constructor(public x: number) {} // `x` is a parameter field
}
Import path
import javascript
Direct supertypes
Indirect supertypes
Predicates
getNameExpr |
Gets the expression specifying the name of this member, or nothing if this is a call signature. |
getParameter |
Gets the initializing constructor parameter from which this field was induced. |
getTypeAnnotation |
Gets the type annotation of this field, if any, such as |
Inherited predicates
getAChild |
Gets a child node of this node. |
from AstNode |
getAChildExpr |
Gets a child expression of this node. |
from AstNode |
getAChildStmt |
Gets a child statement of this node. |
from AstNode |
getADecorator |
Gets a decorator applied to this member. |
from MemberDeclaration |
getAPrimaryQlClass |
Gets the primary QL class for the Locatable. |
from FieldDeclaration |
getAToken |
Gets a token belonging to this element. |
from AstNode |
getChild |
Gets the |
from AstNode |
getChildExpr |
Gets the |
from AstNode |
getChildStmt |
Gets the |
from AstNode |
getChildTypeExpr |
Gets the |
from AstNode |
getContainer |
Gets the function or toplevel to which this node belongs. |
from NodeInStmtContainer |
getDeclaringClass |
Gets the class this member belongs to, if any. |
from MemberDeclaration |
getDeclaringType |
Gets the class or interface this member belongs to. |
from MemberDeclaration |
getDecorator |
Gets the |
from MemberDeclaration |
getDocumentation |
Gets the JSDoc comment for this element, if any. |
from Documentable |
getEndLine |
Gets the line on which this element ends. |
from Locatable |
getFile |
Gets the file this program element comes from. |
from AstNode |
getFirstControlFlowNode |
Gets the first control flow node belonging to this syntactic entity. |
from MemberDeclaration |
getFirstToken |
Gets the first token belonging to this element. |
from AstNode |
getInit |
Gets the expression specifying the initial value of the member; for methods and constructors this is always a function, for fields it may not be defined. |
from MemberDeclaration |
getLastToken |
Gets the last token belonging to this element. |
from AstNode |
getLocation |
Gets this element’s location. |
from AstNode |
getMemberIndex |
Gets the index of this member within its enclosing type. |
from MemberDeclaration |
getName |
Gets the name of this member. |
from MemberDeclaration |
getNumChild |
Gets the number of child nodes of this node. |
from AstNode |
getNumChildExpr |
Gets the number of child expressions of this node. |
from AstNode |
getNumChildStmt |
Gets the number of child statements of this node. |
from AstNode |
getNumLines |
Gets the number of lines covered by this element. |
from Locatable |
getParent |
Gets the parent node of this node, if any. |
from AstNode |
getPrimaryQlClasses |
Gets a comma-separated list of the names of the primary CodeQL classes to which this element belongs. |
from Locatable |
getStartLine |
Gets the line on which this element starts. |
from Locatable |
getStaticAsBool |
Gets a boolean indicating if this member is static. |
from MemberDeclaration |
getTopLevel |
Gets the toplevel syntactic unit to which this element belongs. |
from AstNode |
hasDefiniteAssignmentAssertion |
Holds if this is a TypeScript field marked as definitely assigned with the |
from FieldDeclaration |
hasImpureNameExpr |
Holds if the name of this member is computed by an impure expression. |
from MemberDeclaration |
hasPublicKeyword |
Holds if this is a TypeScript member explicitly annotated with the |
from MemberDeclaration |
inExternsFile |
Holds if this syntactic entity belongs to an externs file. |
from AstNode |
isAbstract |
Holds if this member is abstract. |
from MemberDeclaration |
isAmbient |
Holds if this is part of an ambient declaration or type annotation in a TypeScript file. |
from AstNode |
isComputed |
Holds if the name of this member is computed. |
from MemberDeclaration |
isConcrete |
True if this is neither abstract, ambient, nor part of an overloaded method signature. |
from MemberDeclaration |
isOptional |
Holds if this is a TypeScript field marked as optional with the |
from FieldDeclaration |
isPrivate |
Holds if this is a TypeScript member annotated with the |
from MemberDeclaration |
isProtected |
Holds if this is a TypeScript member annotated with the |
from MemberDeclaration |
isPublic |
Holds if this member is public, either because it has no access modifier or because it is explicitly annotated as |
from MemberDeclaration |
isReadonly |
Holds if this is a TypeScript field annotated with the |
from FieldDeclaration |
isSignature |
True if this is abstract, ambient, or an overload signature. |
from MemberDeclaration |
isStatic |
Holds if this member is static. |
from MemberDeclaration |
toString |
Gets a textual representation of this element. |
from MemberDeclaration |