| Class | Description |
|---|---|
| AnnotationDeclaration |
A single annotation declaration, as part of the annotation list.
|
| ConstDeclaration |
Declaration of a const value.
|
| Declaration | |
| EnumDeclaration |
enum ::= 'enum' {name} '{' {enum_value}* '}' {annotations}?
|
| EnumValueDeclaration |
enum_value ::= {name} ('=' {id})?
|
| FieldDeclaration |
Represents the declaration of a single field param or thrown exception.
|
| IncludeDeclaration |
include ::= 'include' {file_path} ('as' {programName})?
|
| MessageDeclaration |
variant ::= 'struct' | 'union' | 'exception' | 'interface'
message ::= {variant} {name} (('implements' | 'of') {implementing})?
|
| MethodDeclaration |
{@code
function ::= 'oneway'?
|
| NamespaceDeclaration | |
| ProgramDeclaration |
declaration ::= {documentation} ({typedef} | {enum} | {message} | {service} | {const})
program ::= {namespace|include}* {declaration}*
|
| ServiceDeclaration |
service ::= 'service' {name} ('extends' {extending})?
|
| TypedefDeclaration |
typedef ::= 'typedef' {name} '=' {type}
|
Copyright © 2015–2020 morimekta.net. All rights reserved.