├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── common.gypi ├── configure ├── ext └── markdown-parser │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── markdownparser.xcodeproj │ └── project.pbxproj │ ├── msvc │ ├── markdown │ │ └── markdown.vcproj │ ├── msvc.sln │ ├── sundown │ │ └── sundown.vcproj │ └── test-markdown │ │ └── test-markdown.vcproj │ ├── src │ ├── ByteBuffer.cc │ ├── ByteBuffer.h │ ├── MarkdownNode.cc │ ├── MarkdownNode.h │ ├── MarkdownParser.cc │ └── MarkdownParser.h │ └── test │ ├── test-ByteBuffer.cc │ ├── test-MarkdownParser.cc │ └── test-libmarkdownparser.cc ├── snowcrash.gyp ├── snowcrash.xcodeproj └── project.pbxproj ├── src ├── ActionParser.h ├── AssetParser.h ├── AttributesParser.h ├── Blueprint.cc ├── Blueprint.h ├── BlueprintParser.h ├── BlueprintSourcemap.cc ├── BlueprintSourcemap.h ├── BlueprintUtility.h ├── CodeBlockUtility.h ├── DataStructureGroupParser.h ├── HTTP.cc ├── HTTP.h ├── HeadersParser.cc ├── HeadersParser.h ├── MSON.cc ├── MSON.h ├── MSONMixinParser.h ├── MSONNamedTypeParser.h ├── MSONOneOfParser.cc ├── MSONOneOfParser.h ├── MSONParameterParser.h ├── MSONPropertyMemberParser.h ├── MSONSourcemap.cc ├── MSONSourcemap.h ├── MSONTypeSectionParser.cc ├── MSONTypeSectionParser.h ├── MSONUtility.h ├── MSONValueMemberParser.cc ├── MSONValueMemberParser.h ├── ModelTable.h ├── ParameterParser.h ├── ParametersParser.h ├── PayloadParser.h ├── Platform.h ├── RegexMatch.h ├── RelationParser.h ├── ResourceGroupParser.h ├── ResourceParser.h ├── Section.cc ├── Section.h ├── SectionParser.h ├── SectionParserData.h ├── SectionProcessor.h ├── Signature.cc ├── Signature.h ├── SignatureSectionProcessor.h ├── SourceAnnotation.h ├── StringUtility.h ├── UriTemplateParser.cc ├── UriTemplateParser.h ├── ValuesParser.h ├── posix │ └── RegexMatch.cc ├── snowcrash.cc ├── snowcrash.h └── win │ └── RegexMatch.cc ├── test ├── README.md ├── performance │ ├── fixtures │ │ ├── fixture-1.apib │ │ ├── fixture-2.apib │ │ ├── fixture-3.apib │ │ └── fixture-4.apib │ └── perf-snowcrash.cc ├── snowcrashtest.h ├── test-ActionParser.cc ├── test-AssetParser.cc ├── test-AttributesParser.cc ├── test-Blueprint.cc ├── test-BlueprintParser.cc ├── test-BlueprintUtility.cc ├── test-DataStructureGroupParser.cc ├── test-HeadersParser.cc ├── test-Indentation.cc ├── test-MSONMixinParser.cc ├── test-MSONNamedTypeParser.cc ├── test-MSONOneOfParser.cc ├── test-MSONParameterParser.cc ├── test-MSONPropertyMemberParser.cc ├── test-MSONTypeSectionParser.cc ├── test-MSONUtility.cc ├── test-MSONValueMemberParser.cc ├── test-ModelTable.cc ├── test-ParameterParser.cc ├── test-ParametersParser.cc ├── test-PayloadParser.cc ├── test-RegexMatch.cc ├── test-RelationParser.cc ├── test-ResourceGroupParser.cc ├── test-ResourceParser.cc ├── test-SectionParser.cc ├── test-Signature.cc ├── test-StringUtility.cc ├── test-SymbolIdentifier.cc ├── test-UriTemplateParser.cc ├── test-ValuesParser.cc ├── test-Warnings.cc ├── test-csnowcrash.cc └── test-snowcrash.cc ├── tools ├── README.md └── gyp │ ├── .gitignore │ ├── AUTHORS │ ├── DEPS │ ├── LICENSE │ ├── OWNERS │ ├── PRESUBMIT.py │ ├── README.md │ ├── buildbot │ ├── buildbot_run.py │ └── commit_queue │ │ ├── OWNERS │ │ ├── README │ │ └── cq_config.json │ ├── codereview.settings │ ├── data │ └── win │ │ └── large-pdb-shim.cc │ ├── gyp │ ├── gyp.bat │ ├── gyp_main.py │ ├── gyptest.py │ ├── pylib │ └── gyp │ │ ├── MSVSNew.py │ │ ├── MSVSProject.py │ │ ├── MSVSSettings.py │ │ ├── MSVSSettings_test.py │ │ ├── MSVSToolFile.py │ │ ├── MSVSUserFile.py │ │ ├── MSVSUtil.py │ │ ├── MSVSVersion.py │ │ ├── __init__.py │ │ ├── common.py │ │ ├── common_test.py │ │ ├── easy_xml.py │ │ ├── easy_xml_test.py │ │ ├── flock_tool.py │ │ ├── generator │ │ ├── __init__.py │ │ ├── analyzer.py │ │ ├── android.py │ │ ├── cmake.py │ │ ├── dump_dependency_json.py │ │ ├── eclipse.py │ │ ├── gypd.py │ │ ├── gypsh.py │ │ ├── make.py │ │ ├── msvs.py │ │ ├── msvs_test.py │ │ ├── ninja.py │ │ ├── ninja_test.py │ │ ├── xcode.py │ │ └── xcode_test.py │ │ ├── input.py │ │ ├── input_test.py │ │ ├── mac_tool.py │ │ ├── msvs_emulation.py │ │ ├── ninja_syntax.py │ │ ├── ordered_dict.py │ │ ├── simple_copy.py │ │ ├── win_tool.py │ │ ├── xcode_emulation.py │ │ ├── xcode_ninja.py │ │ ├── xcodeproj_file.py │ │ └── xml_fix.py │ ├── pylintrc │ ├── samples │ ├── samples │ └── samples.bat │ ├── setup.py │ └── tools │ ├── README │ ├── Xcode │ ├── README │ └── Specifications │ │ ├── gyp.pbfilespec │ │ └── gyp.xclangspec │ ├── emacs │ ├── README │ ├── gyp-tests.el │ ├── gyp.el │ ├── run-unit-tests.sh │ └── testdata │ │ ├── media.gyp │ │ └── media.gyp.fontified │ ├── graphviz.py │ ├── pretty_gyp.py │ ├── pretty_sln.py │ └── pretty_vcproj.py └── vcbuild.bat /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/appveyor.yml -------------------------------------------------------------------------------- /common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/common.gypi -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/configure -------------------------------------------------------------------------------- /ext/markdown-parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/.gitignore -------------------------------------------------------------------------------- /ext/markdown-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/.travis.yml -------------------------------------------------------------------------------- /ext/markdown-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/LICENSE -------------------------------------------------------------------------------- /ext/markdown-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/Makefile -------------------------------------------------------------------------------- /ext/markdown-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/README.md -------------------------------------------------------------------------------- /ext/markdown-parser/markdownparser.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/markdownparser.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ext/markdown-parser/msvc/markdown/markdown.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/msvc/markdown/markdown.vcproj -------------------------------------------------------------------------------- /ext/markdown-parser/msvc/msvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/msvc/msvc.sln -------------------------------------------------------------------------------- /ext/markdown-parser/msvc/sundown/sundown.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/msvc/sundown/sundown.vcproj -------------------------------------------------------------------------------- /ext/markdown-parser/msvc/test-markdown/test-markdown.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/msvc/test-markdown/test-markdown.vcproj -------------------------------------------------------------------------------- /ext/markdown-parser/src/ByteBuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/src/ByteBuffer.cc -------------------------------------------------------------------------------- /ext/markdown-parser/src/ByteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/src/ByteBuffer.h -------------------------------------------------------------------------------- /ext/markdown-parser/src/MarkdownNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/src/MarkdownNode.cc -------------------------------------------------------------------------------- /ext/markdown-parser/src/MarkdownNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/src/MarkdownNode.h -------------------------------------------------------------------------------- /ext/markdown-parser/src/MarkdownParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/src/MarkdownParser.cc -------------------------------------------------------------------------------- /ext/markdown-parser/src/MarkdownParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/src/MarkdownParser.h -------------------------------------------------------------------------------- /ext/markdown-parser/test/test-ByteBuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/test/test-ByteBuffer.cc -------------------------------------------------------------------------------- /ext/markdown-parser/test/test-MarkdownParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/test/test-MarkdownParser.cc -------------------------------------------------------------------------------- /ext/markdown-parser/test/test-libmarkdownparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/ext/markdown-parser/test/test-libmarkdownparser.cc -------------------------------------------------------------------------------- /snowcrash.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/snowcrash.gyp -------------------------------------------------------------------------------- /snowcrash.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/snowcrash.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/ActionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/ActionParser.h -------------------------------------------------------------------------------- /src/AssetParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/AssetParser.h -------------------------------------------------------------------------------- /src/AttributesParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/AttributesParser.h -------------------------------------------------------------------------------- /src/Blueprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/Blueprint.cc -------------------------------------------------------------------------------- /src/Blueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/Blueprint.h -------------------------------------------------------------------------------- /src/BlueprintParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/BlueprintParser.h -------------------------------------------------------------------------------- /src/BlueprintSourcemap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/BlueprintSourcemap.cc -------------------------------------------------------------------------------- /src/BlueprintSourcemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/BlueprintSourcemap.h -------------------------------------------------------------------------------- /src/BlueprintUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/BlueprintUtility.h -------------------------------------------------------------------------------- /src/CodeBlockUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/CodeBlockUtility.h -------------------------------------------------------------------------------- /src/DataStructureGroupParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/DataStructureGroupParser.h -------------------------------------------------------------------------------- /src/HTTP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/HTTP.cc -------------------------------------------------------------------------------- /src/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/HTTP.h -------------------------------------------------------------------------------- /src/HeadersParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/HeadersParser.cc -------------------------------------------------------------------------------- /src/HeadersParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/HeadersParser.h -------------------------------------------------------------------------------- /src/MSON.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSON.cc -------------------------------------------------------------------------------- /src/MSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSON.h -------------------------------------------------------------------------------- /src/MSONMixinParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONMixinParser.h -------------------------------------------------------------------------------- /src/MSONNamedTypeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONNamedTypeParser.h -------------------------------------------------------------------------------- /src/MSONOneOfParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONOneOfParser.cc -------------------------------------------------------------------------------- /src/MSONOneOfParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONOneOfParser.h -------------------------------------------------------------------------------- /src/MSONParameterParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONParameterParser.h -------------------------------------------------------------------------------- /src/MSONPropertyMemberParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONPropertyMemberParser.h -------------------------------------------------------------------------------- /src/MSONSourcemap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONSourcemap.cc -------------------------------------------------------------------------------- /src/MSONSourcemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONSourcemap.h -------------------------------------------------------------------------------- /src/MSONTypeSectionParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONTypeSectionParser.cc -------------------------------------------------------------------------------- /src/MSONTypeSectionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONTypeSectionParser.h -------------------------------------------------------------------------------- /src/MSONUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONUtility.h -------------------------------------------------------------------------------- /src/MSONValueMemberParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONValueMemberParser.cc -------------------------------------------------------------------------------- /src/MSONValueMemberParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/MSONValueMemberParser.h -------------------------------------------------------------------------------- /src/ModelTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/ModelTable.h -------------------------------------------------------------------------------- /src/ParameterParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/ParameterParser.h -------------------------------------------------------------------------------- /src/ParametersParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/ParametersParser.h -------------------------------------------------------------------------------- /src/PayloadParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/PayloadParser.h -------------------------------------------------------------------------------- /src/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/Platform.h -------------------------------------------------------------------------------- /src/RegexMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/RegexMatch.h -------------------------------------------------------------------------------- /src/RelationParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/RelationParser.h -------------------------------------------------------------------------------- /src/ResourceGroupParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/ResourceGroupParser.h -------------------------------------------------------------------------------- /src/ResourceParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/ResourceParser.h -------------------------------------------------------------------------------- /src/Section.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/Section.cc -------------------------------------------------------------------------------- /src/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/Section.h -------------------------------------------------------------------------------- /src/SectionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/SectionParser.h -------------------------------------------------------------------------------- /src/SectionParserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/SectionParserData.h -------------------------------------------------------------------------------- /src/SectionProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/SectionProcessor.h -------------------------------------------------------------------------------- /src/Signature.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/Signature.cc -------------------------------------------------------------------------------- /src/Signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/Signature.h -------------------------------------------------------------------------------- /src/SignatureSectionProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/SignatureSectionProcessor.h -------------------------------------------------------------------------------- /src/SourceAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/SourceAnnotation.h -------------------------------------------------------------------------------- /src/StringUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/StringUtility.h -------------------------------------------------------------------------------- /src/UriTemplateParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/UriTemplateParser.cc -------------------------------------------------------------------------------- /src/UriTemplateParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/UriTemplateParser.h -------------------------------------------------------------------------------- /src/ValuesParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/ValuesParser.h -------------------------------------------------------------------------------- /src/posix/RegexMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/posix/RegexMatch.cc -------------------------------------------------------------------------------- /src/snowcrash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/snowcrash.cc -------------------------------------------------------------------------------- /src/snowcrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/snowcrash.h -------------------------------------------------------------------------------- /src/win/RegexMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/src/win/RegexMatch.cc -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | # Snow Crash Test Suite 2 | 3 | https://github.com/philsquared/Catch/wiki 4 | 5 | --- 6 | 7 | TODO: -------------------------------------------------------------------------------- /test/performance/fixtures/fixture-1.apib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/performance/fixtures/fixture-1.apib -------------------------------------------------------------------------------- /test/performance/fixtures/fixture-2.apib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/performance/fixtures/fixture-2.apib -------------------------------------------------------------------------------- /test/performance/fixtures/fixture-3.apib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/performance/fixtures/fixture-3.apib -------------------------------------------------------------------------------- /test/performance/fixtures/fixture-4.apib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/performance/fixtures/fixture-4.apib -------------------------------------------------------------------------------- /test/performance/perf-snowcrash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/performance/perf-snowcrash.cc -------------------------------------------------------------------------------- /test/snowcrashtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/snowcrashtest.h -------------------------------------------------------------------------------- /test/test-ActionParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-ActionParser.cc -------------------------------------------------------------------------------- /test/test-AssetParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-AssetParser.cc -------------------------------------------------------------------------------- /test/test-AttributesParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-AttributesParser.cc -------------------------------------------------------------------------------- /test/test-Blueprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-Blueprint.cc -------------------------------------------------------------------------------- /test/test-BlueprintParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-BlueprintParser.cc -------------------------------------------------------------------------------- /test/test-BlueprintUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-BlueprintUtility.cc -------------------------------------------------------------------------------- /test/test-DataStructureGroupParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-DataStructureGroupParser.cc -------------------------------------------------------------------------------- /test/test-HeadersParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-HeadersParser.cc -------------------------------------------------------------------------------- /test/test-Indentation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-Indentation.cc -------------------------------------------------------------------------------- /test/test-MSONMixinParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONMixinParser.cc -------------------------------------------------------------------------------- /test/test-MSONNamedTypeParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONNamedTypeParser.cc -------------------------------------------------------------------------------- /test/test-MSONOneOfParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONOneOfParser.cc -------------------------------------------------------------------------------- /test/test-MSONParameterParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONParameterParser.cc -------------------------------------------------------------------------------- /test/test-MSONPropertyMemberParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONPropertyMemberParser.cc -------------------------------------------------------------------------------- /test/test-MSONTypeSectionParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONTypeSectionParser.cc -------------------------------------------------------------------------------- /test/test-MSONUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONUtility.cc -------------------------------------------------------------------------------- /test/test-MSONValueMemberParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-MSONValueMemberParser.cc -------------------------------------------------------------------------------- /test/test-ModelTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-ModelTable.cc -------------------------------------------------------------------------------- /test/test-ParameterParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-ParameterParser.cc -------------------------------------------------------------------------------- /test/test-ParametersParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-ParametersParser.cc -------------------------------------------------------------------------------- /test/test-PayloadParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-PayloadParser.cc -------------------------------------------------------------------------------- /test/test-RegexMatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-RegexMatch.cc -------------------------------------------------------------------------------- /test/test-RelationParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-RelationParser.cc -------------------------------------------------------------------------------- /test/test-ResourceGroupParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-ResourceGroupParser.cc -------------------------------------------------------------------------------- /test/test-ResourceParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-ResourceParser.cc -------------------------------------------------------------------------------- /test/test-SectionParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-SectionParser.cc -------------------------------------------------------------------------------- /test/test-Signature.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-Signature.cc -------------------------------------------------------------------------------- /test/test-StringUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-StringUtility.cc -------------------------------------------------------------------------------- /test/test-SymbolIdentifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-SymbolIdentifier.cc -------------------------------------------------------------------------------- /test/test-UriTemplateParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-UriTemplateParser.cc -------------------------------------------------------------------------------- /test/test-ValuesParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-ValuesParser.cc -------------------------------------------------------------------------------- /test/test-Warnings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-Warnings.cc -------------------------------------------------------------------------------- /test/test-csnowcrash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-csnowcrash.cc -------------------------------------------------------------------------------- /test/test-snowcrash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/test/test-snowcrash.cc -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/gyp/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/gyp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/AUTHORS -------------------------------------------------------------------------------- /tools/gyp/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/DEPS -------------------------------------------------------------------------------- /tools/gyp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/LICENSE -------------------------------------------------------------------------------- /tools/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tools/gyp/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/PRESUBMIT.py -------------------------------------------------------------------------------- /tools/gyp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/README.md -------------------------------------------------------------------------------- /tools/gyp/buildbot/buildbot_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/buildbot/buildbot_run.py -------------------------------------------------------------------------------- /tools/gyp/buildbot/commit_queue/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/buildbot/commit_queue/OWNERS -------------------------------------------------------------------------------- /tools/gyp/buildbot/commit_queue/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/buildbot/commit_queue/README -------------------------------------------------------------------------------- /tools/gyp/buildbot/commit_queue/cq_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/buildbot/commit_queue/cq_config.json -------------------------------------------------------------------------------- /tools/gyp/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/codereview.settings -------------------------------------------------------------------------------- /tools/gyp/data/win/large-pdb-shim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/data/win/large-pdb-shim.cc -------------------------------------------------------------------------------- /tools/gyp/gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/gyp -------------------------------------------------------------------------------- /tools/gyp/gyp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/gyp.bat -------------------------------------------------------------------------------- /tools/gyp/gyp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/gyp_main.py -------------------------------------------------------------------------------- /tools/gyp/gyptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/gyptest.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSNew.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSProject.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSSettings.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSSettings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSSettings_test.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSToolFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSToolFile.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSUserFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSUserFile.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSUtil.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/MSVSVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/MSVSVersion.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/__init__.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/common.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/common_test.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/easy_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/easy_xml.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/easy_xml_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/easy_xml_test.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/flock_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/flock_tool.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/analyzer.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/android.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/cmake.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/dump_dependency_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/dump_dependency_json.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/eclipse.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/gypd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/gypd.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/gypsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/gypsh.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/make.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/msvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/msvs.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/msvs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/msvs_test.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/ninja.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/ninja_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/ninja_test.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/xcode.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/xcode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/generator/xcode_test.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/input.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/input_test.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/mac_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/mac_tool.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/msvs_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/msvs_emulation.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/ninja_syntax.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/ordered_dict.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/simple_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/simple_copy.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/win_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/win_tool.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/xcode_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/xcode_emulation.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/xcode_ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/xcode_ninja.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/xcodeproj_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/xcodeproj_file.py -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/xml_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylib/gyp/xml_fix.py -------------------------------------------------------------------------------- /tools/gyp/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/pylintrc -------------------------------------------------------------------------------- /tools/gyp/samples/samples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/samples/samples -------------------------------------------------------------------------------- /tools/gyp/samples/samples.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/samples/samples.bat -------------------------------------------------------------------------------- /tools/gyp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/setup.py -------------------------------------------------------------------------------- /tools/gyp/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/README -------------------------------------------------------------------------------- /tools/gyp/tools/Xcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/Xcode/README -------------------------------------------------------------------------------- /tools/gyp/tools/Xcode/Specifications/gyp.pbfilespec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/Xcode/Specifications/gyp.pbfilespec -------------------------------------------------------------------------------- /tools/gyp/tools/Xcode/Specifications/gyp.xclangspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/Xcode/Specifications/gyp.xclangspec -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/emacs/README -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/gyp-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/emacs/gyp-tests.el -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/gyp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/emacs/gyp.el -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/emacs/run-unit-tests.sh -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/testdata/media.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/emacs/testdata/media.gyp -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/testdata/media.gyp.fontified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/emacs/testdata/media.gyp.fontified -------------------------------------------------------------------------------- /tools/gyp/tools/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/graphviz.py -------------------------------------------------------------------------------- /tools/gyp/tools/pretty_gyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/pretty_gyp.py -------------------------------------------------------------------------------- /tools/gyp/tools/pretty_sln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/pretty_sln.py -------------------------------------------------------------------------------- /tools/gyp/tools/pretty_vcproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/tools/gyp/tools/pretty_vcproj.py -------------------------------------------------------------------------------- /vcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/snowcrash/HEAD/vcbuild.bat --------------------------------------------------------------------------------