-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from cipi1965/fix-rapier-sorting
Fix rapier sorting
- Loading branch information
Showing
11 changed files
with
4,677 additions
and
4,697 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import Foundation | ||
|
||
public struct MethodInfo { | ||
public init(parameters: [String: FieldInfo] = [:], result: FieldInfo) { | ||
public init(name: String, parameters: [FieldInfo] = [], result: FieldInfo) { | ||
self.name = name | ||
self.parameters = parameters | ||
self.result = result | ||
} | ||
|
||
public var parameters: [String: FieldInfo] | ||
public var name: String | ||
public var parameters: [FieldInfo] | ||
public var result: FieldInfo | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import Foundation | ||
|
||
public struct TypeInfo { | ||
public init(fields: [String: FieldInfo] = [:]) { | ||
public init(name: String, fields: [FieldInfo] = []) { | ||
self.name = name | ||
self.fields = fields | ||
} | ||
|
||
public var fields: [String: FieldInfo] | ||
public var name: String | ||
public var fields: [FieldInfo] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.