Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.21 KB

index.md

File metadata and controls

31 lines (21 loc) · 1.21 KB

home

Annotated Table of Contents
apg-exp - APG Expressions

  1. The GitHub & npm README page.

README.md

  1. The user interface. Here is were all of the functions that the user will call are defined and explained.

apg-exp.js

  1. The exec() and test() functions are implemented in this file.

exec.js

  1. The replace() function is implemented in this file.

replace.js

  1. The split() function is implemented in this file. matching phrases from the input string as it goes.

split.js

  1. The text and HTML display functions are implemented in this file.

result.js

  1. When the input is SABNF syntax text, this file will call the APG functions necessary to generate a parser from it.

sabnf-generator.js

  1. Parses the replacement string of the replace() function, coding the replacement phrase shorthands for the phrase parts, such as the left context ($`), matched phrase ($&), etc.

parse-replacement.js