Home > @activeviam/activeui-sdk > Syntax
Syntax enum
Signature:
export declare enum Syntax
Enumeration Members
| Member | Value | Description |
|---|---|---|
| BRACES | "Braces" | Braces style, e.g. {ARG, ...} (used for set expressions) |
| FUNCTION | "Function" | Function style, e.g. FUNCTION() or FUNCTION(args). |
| INFIX | "Infix" | Infix style, e.g. arg OPERATOR arg (typically for operators such as '+' or 'AND'). |
| METHOD | "Method" | Method style, e.g. object.METHOD() or object.METHOD(args). |
| PARENTHESES | "Parentheses" | Parentheses style, e.g. (ARG,...) (used for tuple expressions) |
| POSTFIX | "Postfix" | Postfix style, e.g. arg OPERATOR |
| PREFIX | "Prefix" | Prefix style, e.g. OPERATOR arg (typically for unary operators such as '-'). |
| PROPERTY | "Property" | Property style, e.g. object.PROPERTY. |