Skip to main content

module examples::staticFields::Syntax

rascal-0.34.0
typepal-0.8.10

Usage

import examples::staticFields::Syntax;

Source code

http://github.com/usethesource/typepal/src/examples/staticFields/Syntax.rsc

Dependencies

extend examples::CommonLex;

syntax Program

start syntax Program = Declaration*;

syntax Type

syntax Type = "int" | "str" | Id typ;

syntax Declaration

syntax Declaration
= Type typ Id id "=" Expression exp ";"
| "struct" Id name "{" {Field ","}* fields "}" ";"
;

syntax Field

syntax Field = Type typ Id name ;

syntax Expression

syntax Expression 
= Integer i
| String s
| Id use
| Expression lhs "." Id fieldName
| "new" Id name
;

syntax Keywords

keyword Keywords = "int" | "str" | "struct" | "new";