├── .gitignore ├── .idea ├── artifacts │ └── antlr4example_jar.xml └── libraries │ ├── commons_io_2_5.xml │ ├── commons_io_2_5_javadoc.xml │ └── java_json.xml ├── AbstractType.java ├── AssignmentUtil.java ├── BinaryExpression.java ├── CacheVisitor.java ├── CommonLexerRules.g4 ├── ControlFlow.java ├── ECMAScript.g4 ├── ECMAScript6.g4 ├── ECMAScript6ColoringTokens.g4 ├── EntityCache.java ├── Expression.java ├── FunctionUtil.java ├── JSLexerRules.g4 ├── LICENSE ├── META-INF └── MANIFEST.MF ├── Main.java ├── Prefix.java ├── PrefixElem.java ├── PrefixOrExpression.java ├── README.md ├── StringInterpolation.java ├── Swift.tokens ├── SwiftBaseVisitor.java ├── SwiftLexer.java ├── SwiftLexer.tokens ├── SwiftParser.java ├── SwiftStable.g4 ├── SwiftSupport.java ├── SwiftVisitor.java ├── TranspilerVisitor.java ├── Type.java ├── TypeScript.g4 ├── Visitor.java ├── WalkerUtil.java ├── antlr4example.iml ├── binary-expressions.json ├── example.ts ├── live-preview ├── app.ts ├── client │ └── views │ │ └── index.html ├── package.json ├── routes │ ├── index.ts │ └── transpile.ts ├── tsconfig.json └── www.ts ├── out └── artifacts │ └── antlr4example_jar │ └── antlr4example.jar ├── pom.xml ├── prefix-elems.json └── test ├── binary-expression ├── nil-coalescing.swift └── string-interpolation.swift ├── chaining ├── dictionary-keys-nilling.swift ├── optional-left-hand-side.swift ├── optional.swift └── parenthesized.swift ├── control-flow ├── for-in.swift ├── if.swift └── while.swift ├── fetch.js ├── functions ├── caching-param-type.swift ├── default-values.swift ├── external-names.swift ├── functions-as-vars.swift ├── parameter-overload.swift ├── returns-array.swift ├── returns-dictionary.swift ├── returns-tuple.swift └── variadic-param.swift ├── monkey-patch.js ├── package.json ├── test.js ├── types ├── array.swift ├── copying-literals-on-assignment.swift ├── dictionary.swift ├── set.swift └── tuple.swift ├── underscore.js └── weheartswift ├── arrays-1.swift ├── arrays-10.swift ├── arrays-11.swift ├── arrays-12.swift ├── arrays-13.swift ├── arrays-14.swift ├── arrays-15.swift ├── arrays-16.swift ├── arrays-17.swift ├── arrays-2.swift ├── arrays-3.swift ├── arrays-4.swift ├── arrays-5.swift ├── arrays-6.swift ├── arrays-7.swift ├── arrays-8.swift ├── arrays-9.swift ├── closures-1.swift ├── closures-2.swift ├── closures-3.swift ├── closures-4.swift ├── conditionals-1.swift ├── conditionals-10.swift ├── conditionals-11.swift ├── conditionals-2.swift ├── conditionals-3.swift ├── conditionals-4.swift ├── conditionals-5.swift ├── conditionals-6.swift ├── conditionals-8.swift ├── conditionals-9.swift ├── dictionaries-1.swift ├── dictionaries-2.swift ├── dictionaries-3.swift ├── dictionaries-4.swift ├── dictionaries-5.swift ├── dictionaries-6.swift ├── dictionaries-7.swift ├── functions-1.swift ├── functions-10.swift ├── functions-13.swift ├── functions-14.swift ├── functions-15.swift ├── functions-16.swift ├── functions-17.swift ├── functions-2.swift ├── functions-3.swift ├── functions-5.swift ├── functions-6.swift ├── functions-7.swift ├── functions-8.swift ├── functions-9.swift ├── loops-1.swift ├── loops-10.swift ├── loops-11.swift ├── loops-12.swift ├── loops-13.swift ├── loops-14.swift ├── loops-15.swift ├── loops-16.swift ├── loops-17.swift ├── loops-18.swift ├── loops-19.swift ├── loops-2.swift ├── loops-3.swift ├── loops-4.swift ├── loops-5.swift ├── loops-6.swift ├── loops-7.swift ├── loops-8.swift ├── loops-9.swift ├── strings-1.swift ├── strings-2.swift ├── strings-3.swift ├── strings-4.swift ├── strings-5.swift ├── tuples-enums-1.swift ├── tuples-enums-2.swift ├── types-1.swift ├── types-2.swift ├── types-3.swift ├── types-4.swift ├── types-5.swift ├── variables-constants-basic-operations-1.swift ├── variables-constants-basic-operations-2.swift ├── variables-constants-basic-operations-3.swift └── variables-constants-basic-operations-4.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/artifacts/antlr4example_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/.idea/artifacts/antlr4example_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/commons_io_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/.idea/libraries/commons_io_2_5.xml -------------------------------------------------------------------------------- /.idea/libraries/commons_io_2_5_javadoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/.idea/libraries/commons_io_2_5_javadoc.xml -------------------------------------------------------------------------------- /.idea/libraries/java_json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/.idea/libraries/java_json.xml -------------------------------------------------------------------------------- /AbstractType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/AbstractType.java -------------------------------------------------------------------------------- /AssignmentUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/AssignmentUtil.java -------------------------------------------------------------------------------- /BinaryExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/BinaryExpression.java -------------------------------------------------------------------------------- /CacheVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/CacheVisitor.java -------------------------------------------------------------------------------- /CommonLexerRules.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/CommonLexerRules.g4 -------------------------------------------------------------------------------- /ControlFlow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/ControlFlow.java -------------------------------------------------------------------------------- /ECMAScript.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/ECMAScript.g4 -------------------------------------------------------------------------------- /ECMAScript6.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/ECMAScript6.g4 -------------------------------------------------------------------------------- /ECMAScript6ColoringTokens.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/ECMAScript6ColoringTokens.g4 -------------------------------------------------------------------------------- /EntityCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/EntityCache.java -------------------------------------------------------------------------------- /Expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/Expression.java -------------------------------------------------------------------------------- /FunctionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/FunctionUtil.java -------------------------------------------------------------------------------- /JSLexerRules.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/JSLexerRules.g4 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/Main.java -------------------------------------------------------------------------------- /Prefix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/Prefix.java -------------------------------------------------------------------------------- /PrefixElem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/PrefixElem.java -------------------------------------------------------------------------------- /PrefixOrExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/PrefixOrExpression.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/README.md -------------------------------------------------------------------------------- /StringInterpolation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/StringInterpolation.java -------------------------------------------------------------------------------- /Swift.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/Swift.tokens -------------------------------------------------------------------------------- /SwiftBaseVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/SwiftBaseVisitor.java -------------------------------------------------------------------------------- /SwiftLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/SwiftLexer.java -------------------------------------------------------------------------------- /SwiftLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/SwiftLexer.tokens -------------------------------------------------------------------------------- /SwiftParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/SwiftParser.java -------------------------------------------------------------------------------- /SwiftStable.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/SwiftStable.g4 -------------------------------------------------------------------------------- /SwiftSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/SwiftSupport.java -------------------------------------------------------------------------------- /SwiftVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/SwiftVisitor.java -------------------------------------------------------------------------------- /TranspilerVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/TranspilerVisitor.java -------------------------------------------------------------------------------- /Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/Type.java -------------------------------------------------------------------------------- /TypeScript.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/TypeScript.g4 -------------------------------------------------------------------------------- /Visitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/Visitor.java -------------------------------------------------------------------------------- /WalkerUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/WalkerUtil.java -------------------------------------------------------------------------------- /antlr4example.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/antlr4example.iml -------------------------------------------------------------------------------- /binary-expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/binary-expressions.json -------------------------------------------------------------------------------- /example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/example.ts -------------------------------------------------------------------------------- /live-preview/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/live-preview/app.ts -------------------------------------------------------------------------------- /live-preview/client/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/live-preview/client/views/index.html -------------------------------------------------------------------------------- /live-preview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/live-preview/package.json -------------------------------------------------------------------------------- /live-preview/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/live-preview/routes/index.ts -------------------------------------------------------------------------------- /live-preview/routes/transpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/live-preview/routes/transpile.ts -------------------------------------------------------------------------------- /live-preview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/live-preview/tsconfig.json -------------------------------------------------------------------------------- /live-preview/www.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/live-preview/www.ts -------------------------------------------------------------------------------- /out/artifacts/antlr4example_jar/antlr4example.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/out/artifacts/antlr4example_jar/antlr4example.jar -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/pom.xml -------------------------------------------------------------------------------- /prefix-elems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/prefix-elems.json -------------------------------------------------------------------------------- /test/binary-expression/nil-coalescing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/binary-expression/nil-coalescing.swift -------------------------------------------------------------------------------- /test/binary-expression/string-interpolation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/binary-expression/string-interpolation.swift -------------------------------------------------------------------------------- /test/chaining/dictionary-keys-nilling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/chaining/dictionary-keys-nilling.swift -------------------------------------------------------------------------------- /test/chaining/optional-left-hand-side.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/chaining/optional-left-hand-side.swift -------------------------------------------------------------------------------- /test/chaining/optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/chaining/optional.swift -------------------------------------------------------------------------------- /test/chaining/parenthesized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/chaining/parenthesized.swift -------------------------------------------------------------------------------- /test/control-flow/for-in.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/control-flow/for-in.swift -------------------------------------------------------------------------------- /test/control-flow/if.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/control-flow/if.swift -------------------------------------------------------------------------------- /test/control-flow/while.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/control-flow/while.swift -------------------------------------------------------------------------------- /test/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/fetch.js -------------------------------------------------------------------------------- /test/functions/caching-param-type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/caching-param-type.swift -------------------------------------------------------------------------------- /test/functions/default-values.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/default-values.swift -------------------------------------------------------------------------------- /test/functions/external-names.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/external-names.swift -------------------------------------------------------------------------------- /test/functions/functions-as-vars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/functions-as-vars.swift -------------------------------------------------------------------------------- /test/functions/parameter-overload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/parameter-overload.swift -------------------------------------------------------------------------------- /test/functions/returns-array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/returns-array.swift -------------------------------------------------------------------------------- /test/functions/returns-dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/returns-dictionary.swift -------------------------------------------------------------------------------- /test/functions/returns-tuple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/returns-tuple.swift -------------------------------------------------------------------------------- /test/functions/variadic-param.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/functions/variadic-param.swift -------------------------------------------------------------------------------- /test/monkey-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/monkey-patch.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/test.js -------------------------------------------------------------------------------- /test/types/array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/types/array.swift -------------------------------------------------------------------------------- /test/types/copying-literals-on-assignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/types/copying-literals-on-assignment.swift -------------------------------------------------------------------------------- /test/types/dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/types/dictionary.swift -------------------------------------------------------------------------------- /test/types/set.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/types/set.swift -------------------------------------------------------------------------------- /test/types/tuple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/types/tuple.swift -------------------------------------------------------------------------------- /test/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/underscore.js -------------------------------------------------------------------------------- /test/weheartswift/arrays-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-1.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-10.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-11.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-11.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-12.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-12.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-13.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-13.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-14.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-14.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-15.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-15.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-16.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-16.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-17.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-17.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-2.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-3.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-4.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-5.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-6.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-7.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-8.swift -------------------------------------------------------------------------------- /test/weheartswift/arrays-9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/arrays-9.swift -------------------------------------------------------------------------------- /test/weheartswift/closures-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/closures-1.swift -------------------------------------------------------------------------------- /test/weheartswift/closures-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/closures-2.swift -------------------------------------------------------------------------------- /test/weheartswift/closures-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/closures-3.swift -------------------------------------------------------------------------------- /test/weheartswift/closures-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/closures-4.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-1.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-10.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-11.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-11.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-2.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-3.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-4.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-5.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-6.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-8.swift -------------------------------------------------------------------------------- /test/weheartswift/conditionals-9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/conditionals-9.swift -------------------------------------------------------------------------------- /test/weheartswift/dictionaries-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/dictionaries-1.swift -------------------------------------------------------------------------------- /test/weheartswift/dictionaries-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/dictionaries-2.swift -------------------------------------------------------------------------------- /test/weheartswift/dictionaries-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/dictionaries-3.swift -------------------------------------------------------------------------------- /test/weheartswift/dictionaries-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/dictionaries-4.swift -------------------------------------------------------------------------------- /test/weheartswift/dictionaries-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/dictionaries-5.swift -------------------------------------------------------------------------------- /test/weheartswift/dictionaries-6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/dictionaries-6.swift -------------------------------------------------------------------------------- /test/weheartswift/dictionaries-7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/dictionaries-7.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-1.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-10.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-13.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-13.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-14.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-14.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-15.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-15.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-16.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-16.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-17.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-17.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-2.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-3.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-5.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-6.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-7.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-8.swift -------------------------------------------------------------------------------- /test/weheartswift/functions-9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/functions-9.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-1.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-10.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-10.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-11.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-11.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-12.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-12.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-13.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-13.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-14.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-14.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-15.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-15.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-16.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-16.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-17.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-17.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-18.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-18.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-19.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-19.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-2.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-3.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-4.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-5.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-6.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-7.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-8.swift -------------------------------------------------------------------------------- /test/weheartswift/loops-9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/loops-9.swift -------------------------------------------------------------------------------- /test/weheartswift/strings-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/strings-1.swift -------------------------------------------------------------------------------- /test/weheartswift/strings-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/strings-2.swift -------------------------------------------------------------------------------- /test/weheartswift/strings-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/strings-3.swift -------------------------------------------------------------------------------- /test/weheartswift/strings-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/strings-4.swift -------------------------------------------------------------------------------- /test/weheartswift/strings-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/strings-5.swift -------------------------------------------------------------------------------- /test/weheartswift/tuples-enums-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/tuples-enums-1.swift -------------------------------------------------------------------------------- /test/weheartswift/tuples-enums-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/tuples-enums-2.swift -------------------------------------------------------------------------------- /test/weheartswift/types-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/types-1.swift -------------------------------------------------------------------------------- /test/weheartswift/types-2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/types-2.swift -------------------------------------------------------------------------------- /test/weheartswift/types-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/types-3.swift -------------------------------------------------------------------------------- /test/weheartswift/types-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/types-4.swift -------------------------------------------------------------------------------- /test/weheartswift/types-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/types-5.swift -------------------------------------------------------------------------------- /test/weheartswift/variables-constants-basic-operations-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/variables-constants-basic-operations-1.swift -------------------------------------------------------------------------------- /test/weheartswift/variables-constants-basic-operations-2.swift: -------------------------------------------------------------------------------- 1 | var a = 123 2 | 3 | print(a % 10) -------------------------------------------------------------------------------- /test/weheartswift/variables-constants-basic-operations-3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/variables-constants-basic-operations-3.swift -------------------------------------------------------------------------------- /test/weheartswift/variables-constants-basic-operations-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelganczak/ts-swift-transpiler/HEAD/test/weheartswift/variables-constants-basic-operations-4.swift --------------------------------------------------------------------------------