-
Notifications
You must be signed in to change notification settings - Fork 0
7 Aliases
Studio 42 GmbH edited this page Dec 27, 2022
·
1 revision
Alias allows to define another name for your types, annotations and pragmas.
ALIAS alias name;
Here is excerpt of the parser definition in ANTLR4 grammar:
alias :
KEYWORD_ALIAS
aliasRedefinition
aliasDefinition
SEMI_COLON ;
aliasRedefinition : identifier ;
aliasDefinition : identifier ;
alias boolean de.s42.dl.types.BooleanDLType;
alias Config Configuration;
Copyright Studio 42 GmbH 2022.