Global

Methods

# get(name) → {Array.<string>}

Get the definition of a variable.

Parameters:
Name Type Description
name string

View Source index.js, line 15826

Example: props.a.b is represented by ['a', 'b']

Array.<string>

# set(name, allNames) → {Map.<string, Array.<string>>}

Add a variable name to the current scope

Parameters:
Name Type Description
name string
allNames Array.<string>

Example: props.a.b should be formatted as ['a', 'b']

View Source index.js, line 15813

Map.<string, Array.<string>>