GrammarKit 1.0.2

GrammarKit 1.0.2

Maintained by NoodleOfDeath.



 
Depends on:
SwiftyXMLParser~> 5.0
SwiftyUTType~> 1.0
 

  • By
  • NoodleOfDeath

GrammarKit

CI Status Version License Platform

The goal of GrammarKit is to provide a lightweight and extensible framework and matcher for grammatically matching (or the act of tokenizing and subsequently parsing) a stream of characters using a user defined grammar definition that can attribute meaning to occurrences and/or sequences of characters that match any number of custom rules belonging to that grammar. Using this framework should allow developers to not only define any number of custom languages without the need for a complete project rebuild (just the addition of a simple XML file and/or ParserParser grammar package with the .grammar extension) but also use this matcher to apply syntax highlighting, identifier and scope recognition, and code recommendation/autocompletion in their applications.

Support to import and convert ANTLR4 .g4 grammar files to GrammarKit grammar bundle format is a long term goal of this project, as well.

General Workflow

The workflow of GrammarKit is meant to be easily integrated into development projects as an extensible microservice and not a massive blackboxed framework.

-- TODO --

Authors and Major Contributors

-- TODO --

Useful Documents