forked from LeenkxTeam/LNXSDK
16 lines
257 B
Haxe
16 lines
257 B
Haxe
package haxe.macro;
|
|
|
|
enum DisplayMode {
|
|
None;
|
|
Default;
|
|
Definition;
|
|
TypeDefinition;
|
|
Implementation;
|
|
Package;
|
|
Hover;
|
|
References(withDefinition:Bool, findDescendants:Bool, findBase:Bool);
|
|
ModuleSymbols;
|
|
WorkspaceSymbols(filter:String);
|
|
Signature;
|
|
}
|