Skip to content

Commit

Permalink
Sync hylo from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
koliyo committed Oct 1, 2023
1 parent da9c435 commit 7b6e70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hylo
Submodule hylo updated 29 files
+10 −0 .github/workflows/markdown-link-check.yml
+3 −1 CONTRIBUTING.md
+100 −0 Docs/CompilerArchitecture.md
+10 −0 Library/Hylo/Core/Bool.hylo
+25 −0 Library/Hylo/Core/Collection.hylo
+28 −0 Library/Hylo/Core/CollectionOfOne.hylo
+23 −0 Library/Hylo/Core/Numbers/AdditiveArithmetic.hylo
+0 −0 Library/Hylo/Core/Numbers/ExpressibleByFloatLiteral.hylo
+0 −0 Library/Hylo/Core/Numbers/ExpressibleByIntegerLiteral.hylo
+0 −0 Library/Hylo/Core/Numbers/Floats/Float32.hylo
+0 −0 Library/Hylo/Core/Numbers/Floats/Float64.hylo
+102 −0 Library/Hylo/Core/Numbers/Integers/BinaryInteger.hylo
+67 −0 Library/Hylo/Core/Numbers/Integers/FixedWidthInteger.hylo
+186 −86 Library/Hylo/Core/Numbers/Integers/Int.hylo
+0 −0 Library/Hylo/Core/Numbers/Integers/Int32.hylo
+0 −0 Library/Hylo/Core/Numbers/Integers/Int8.hylo
+278 −0 Library/Hylo/Core/Numbers/Integers/UInt.hylo
+17 −0 Library/Hylo/Core/Numbers/Numeric.hylo
+10 −0 Library/Hylo/Core/Numbers/SignedNumeric.hylo
+4 −0 Library/Hylo/Core/Operators.hylo
+0 −45 Library/Hylo/Core/UInt.hylo
+73 −36 Sources/CodeGen/LLVM/Transpilation.swift
+12 −0 Sources/Core/BuiltinFunction.swift
+18 −0 Sources/Core/NativeInstruction.swift
+29 −16 Sources/FrontEnd/TypeChecking/TypeChecker.swift
+24 −0 Tests/HyloTests/BuiltinFunctionTests.swift
+11 −0 Tests/HyloTests/TestCases/TypeChecking/ConformanceWithSubscript.hylo
+6 −0 Tests/LibraryTests/TestCases/CollectionOfOneTests.hylo
+61 −0 Tests/LibraryTests/TestCases/IntTests.hylo

0 comments on commit 7b6e70a

Please sign in to comment.