:TS:Method
Node
→ represents a declared method of a :TS:Class or :TS:Interface
Properties
Name | Description |
---|
globalFqn | global FQN of the method |
localFqn | local FQN of the method |
name | name of the method |
visibility | visibility of the method, i.e. public (default), protected , private , or js_private (for methods declared using the # prefix) |
async (boolean) | indicates, if the method has an async modifier |
static (boolean) | only for :TS:Class properties: indicates, if the method has an static modifier |
abstract (boolean) | only for :TS:Class properties: indicates, if the method has an abstract modifier |
override (boolean) | only for :TS:Class properties: indicates, if the method has an override modifier |
code coordinates | code coordinates of the method declaration (without fileName ) |
Relations