Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

 KIELERYAKINDU 
  

Events:

  • interface scope: events can either be ingoing (in event event) or outgoing (out event event).
  • local scope: events are able to store a value.
    internal: event localEvent : bool

Variables:

  • variable:
    var variable: string
     
  • readonly variable:
    var readonly size: int = 10
  • external variable: can be referenced by the environment
    var external variable: int = 44
 
Typesystem
  • pure: only makes sense for Signals. Signals are absent or present.
  • host: no actual type is given. The given type in the hostType attribute is used.
  • bool
  • unsigned
  • int
  • float
  • double
  • string
  • integer
  • real
  • boolean 
  • string
  • void
 
Expressions 
  • Logical AND (var1 && var2)
  • Logical OR (var1 || var2)
  • Logical NOT (!var1)
  • Conditional Expression (var1 ? var2 : var3)
 
Operations
  • none
  • add
  • mult
  • max
  • min
  • or
  • and
  • host
  



  • No labels