gitextract_vfh2ubbu/ ├── .codecov.yml ├── .github/ │ └── .config.yml ├── .gitignore ├── .jazzy.yml ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── .version ├── CONTRIBUTING.md ├── Dangerfile ├── Documentation/ │ ├── Example projects.md │ ├── Interpreter engine details.md │ ├── Strongly-typed evaluator.md │ ├── Template evaluator.md │ └── Tips & Tricks.md ├── Eval.playground/ │ ├── Contents.swift │ ├── Sources/ │ │ ├── Helpers.swift │ │ └── TypesAndFunctions.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Playground.xcscheme ├── Eval.podspec ├── Eval.xcodeproj/ │ ├── EvalTests_Info.plist │ ├── Eval_Info.plist │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ ├── Eval-Package.xcscheme │ └── xcschememanagement.plist ├── Eval.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── Examples/ │ ├── .swiftlint.yml │ ├── AttributedStringExample/ │ │ ├── .gitignore │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources/ │ │ │ └── AttributedStringExample/ │ │ │ └── TemplateExample.swift │ │ └── Tests/ │ │ ├── .swiftlint.yml │ │ ├── AttributedStringExampleTests/ │ │ │ └── AttributedStringExampleTests.swift │ │ └── LinuxMain.swift │ ├── ColorParserExample/ │ │ ├── .gitignore │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources/ │ │ │ └── ColorParserExample/ │ │ │ └── ColorParserExample.swift │ │ └── Tests/ │ │ ├── .swiftlint.yml │ │ ├── ColorParserExampleTests/ │ │ │ └── ColorParserExampleTests.swift │ │ └── LinuxMain.swift │ └── TemplateExample/ │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ ├── Sources/ │ │ └── TemplateExample/ │ │ └── TemplateExample.swift │ └── Tests/ │ ├── .swiftlint.yml │ ├── LinuxMain.swift │ └── TemplateExampleTests/ │ ├── TemplateExampleComponentTests.swift │ ├── TemplateExampleTests.swift │ ├── import.txt │ └── template.txt ├── Gemfile ├── LICENSE.txt ├── Package.swift ├── README.md ├── Scripts/ │ ├── .gitignore │ ├── .swiftlint.yml │ ├── Package.swift │ ├── Sources/ │ │ └── Automation/ │ │ ├── Error.swift │ │ ├── Eval.swift │ │ ├── Shell.swift │ │ ├── Travis.swift │ │ └── main.swift │ ├── ci.sh │ └── git_auth.sh ├── Sources/ │ └── Eval/ │ ├── Common.swift │ ├── Elements.swift │ ├── TemplateInterpreter.swift │ ├── TypedInterpreter.swift │ └── Utilities/ │ ├── MatchResult.swift │ ├── Matcher.swift │ ├── Pattern.swift │ └── Utils.swift ├── Tests/ │ ├── .swiftlint.yml │ ├── EvalTests/ │ │ ├── IntegrationTests/ │ │ │ ├── InterpreterTests.swift │ │ │ ├── PerformanceTest.swift │ │ │ ├── Suffix.swift │ │ │ └── TemplateTests.swift │ │ ├── UnitTests/ │ │ │ ├── DataTypeTests.swift │ │ │ ├── FunctionTests.swift │ │ │ ├── InterpreterContextTests.swift │ │ │ ├── KeywordTests.swift │ │ │ ├── LiteralTests.swift │ │ │ ├── MatchResultTests.swift │ │ │ ├── MatchStatementTests.swift │ │ │ ├── MatcherTests.swift │ │ │ ├── PatternTests.swift │ │ │ ├── TemplateInterpreterTests.swift │ │ │ ├── TypedInterpreterTests.swift │ │ │ ├── UtilTests.swift │ │ │ ├── VariableProcessor.swift │ │ │ └── VariableTests.swift │ │ └── Utils.swift │ └── LinuxMain.swift └── github_rsa.enc