Squeak
  QotD    "To be or not to be" – Shakespeare
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
OMeta/2
Last updated at 11:36 am UTC on 22 May 2017
Wikipedia

OMeta is a specialized object-oriented programming language for pattern matching, developed by Alessandro Warth and Ian Piumarta in 2007 under the Viewpoints Research Institute. The language is based on Parsing Expression Grammars (PEGs) rather than Context-Free Grammars with the intent of providing “a natural and convenient way for programmers to implement tokenizers, parsers, visitors, and tree-transformers”.[1]

OMeta’s main goal is to allow a broader audience to use techniques generally available only to language programmers, such as parsing.[1] It is also known for its use in quickly creating prototypes, though programs written in OMeta are noted to be generally less efficient than those written in vanilla (base language) implementations, such as JavaScript.[2][3]

OMeta is noted for its use in creating Domain-Specific Languages, and especially for the maintainability of its implementations (Newcome). OMeta, like other meta languages, requires a host language; it was originally created as a COLA implementation.
More: https://en.wikipedia.org/wiki/OMeta

Report: http://www.vpri.org/pdf/tr2007003_ometa.pdf

Squeak implementation: http://www.squeaksource.com/OMeta

See also

Ohm/S and Gramada