Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Handle Jinja in SLS files #31

Closed
wants to merge 5 commits into from
Closed

Commits on Nov 10, 2021

  1. Add jinja tokenizer

    In order to handle jinja processing we need a fault-tolerant tokenizer
    that gives the line and column start and end of each token.
    cbosdo committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    ac4e86f View commit details
    Browse the repository at this point in the history
  2. Add a parser creating an abstract syntax tree for jinja

    Transform the simplified jinja tokens into a abstract syntax tree. This
    parser needs to be fault tolerant to handle cases like unfinished
    blocks or blocks missing the start.
    
    The parser currently only handles variables, if and for groups.
    cbosdo committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    b57f2cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d024b84 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    36bc856 View commit details
    Browse the repository at this point in the history
  5. [WIP] Merge Jinja + SLS AST

    cbosdo committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    41bf9c1 View commit details
    Browse the repository at this point in the history