Interface IFunctionScope
A function's scope.
Inherited Members
Namespace: Loretta.CodeAnalysis.Lua
Assembly: Loretta.CodeAnalysis.Lua.dll
Syntax
public interface IFunctionScope : IScope
Properties
| Improve this Doc View SourceCapturedVariables
Contains the variables that are captured by this scope. Variables captured by the scope are variables that weren't declared on the scope but are used in it.
Declaration
IEnumerable<IVariable> CapturedVariables { get; }
Property Value
Type | Description |
---|---|
IEnumerable<IVariable> |
Parameters
The parameters
Declaration
IEnumerable<IVariable> Parameters { get; }
Property Value
Type | Description |
---|---|
IEnumerable<IVariable> |