forked from vinivendra/Gryphon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
82 lines (74 loc) · 2.31 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
### MacOS files
.DS_Store
### Build products
# Swift build folders
/.build
/.swiftpm
Package.resolved
# Gryphon auxiliary folder
/.gryphon
# AST Dumps for translated files
*.swiftAstDump
# Intermediate representations used in testing
*.swiftAST
*.gryphonASTRaw
*.gryphonAST
# Used by the test suite to print diffs when tests fail
/.tmp
# Result of building the translated programs
*.jar
# (Exception for gradle wrappers)
!**/gradle/wrapper/gradle-wrapper.jar
# Old Gryphon version (for bootstrapping)
Test files/Bootstrap/gryphon-old
# Xcode tests
Test files/XcodeTests/iOS/.gryphon
Test files/XcodeTests/iOS/gryphonInputFiles.xcfilelist
Test files/XcodeTests/iOS/build
Test files/XcodeTests/iOS/GryphoniOSTest.xcodeproj
Test files/XcodeTests/iOS/output.txt
### Xcode files
Gryphon.xcodeproj
default.profraw
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
### Files generated by the unit tests
Test files/Test cases/outputs.kt
### Kotlin files generated in bootstrap
Test files/Bootstrap/ASTDumpDecoder.kt
Test files/Bootstrap/AuxiliaryFileContents.kt
Test files/Bootstrap/Compiler.kt
Test files/Bootstrap/Driver.kt
Test files/Bootstrap/Extensions.kt
Test files/Bootstrap/GryphonAST.kt
Test files/Bootstrap/KotlinTranslator.kt
Test files/Bootstrap/LibraryTranspilationPass.kt
Test files/Bootstrap/OutputFileMap.kt
Test files/Bootstrap/PrintableAsTree.kt
Test files/Bootstrap/RubyScriptContents.kt
Test files/Bootstrap/SharedUtilities.kt
Test files/Bootstrap/SourceFile.kt
Test files/Bootstrap/SwiftAST.kt
Test files/Bootstrap/SwiftTranslator.kt
Test files/Bootstrap/KotlinTranslationResult.kt
Test files/Bootstrap/TranspilationContext.kt
Test files/Bootstrap/TranspilationPass.kt
Test files/Bootstrap/AcceptanceTest.kt
Test files/Bootstrap/ASTDumpDecoderTest.kt
Test files/Bootstrap/CompilerTest.kt
Test files/Bootstrap/DriverTest.kt
Test files/Bootstrap/ExtensionsTest.kt
Test files/Bootstrap/IntegrationTest.kt
Test files/Bootstrap/LibraryTranspilationTest.kt
Test files/Bootstrap/ListTest.kt
Test files/Bootstrap/MutableListTest.kt
Test files/Bootstrap/MapTest.kt
Test files/Bootstrap/MutableMapTest.kt
Test files/Bootstrap/PrintableAsTreeTest.kt
Test files/Bootstrap/ShellTest.kt
Test files/Bootstrap/SourceFileTest.kt
Test files/Bootstrap/KotlinTranslationResultTest.kt
Test files/Bootstrap/UtilitiesTest.kt
Test files/Bootstrap/SharedTestUtilities.kt