Improve Library related stuff

This commit is contained in:
gingerBill
2022-02-14 16:25:20 +00:00
parent 83d63e572a
commit b755609438
+6 -6
View File
@@ -6906,13 +6906,13 @@ Function_label :: #force_inline proc(self: ^Function) -> ^NS.String {
Function_name :: #force_inline proc(self: ^Function) -> ^NS.String { Function_name :: #force_inline proc(self: ^Function) -> ^NS.String {
return msgSend(^NS.String, self, "name") return msgSend(^NS.String, self, "name")
} }
@(objc_type=Function, objc_name="newArgumentEncoderWithBufferIndex") @(objc_type=Function, objc_name="newArgumentEncoder")
Function_newArgumentEncoderWithBufferIndex :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger) -> ^Function { Function_newArgumentEncoder :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger) -> ^ArgumentEncoder {
return msgSend(^Function, self, "newArgumentEncoderWithBufferIndex:", bufferIndex) return msgSend(^ArgumentEncoder, self, "newArgumentEncoderWithBufferIndex:", bufferIndex)
} }
@(objc_type=Function, objc_name="newArgumentEncoderWithBufferIndexWithReflection") @(objc_type=Function, objc_name="newArgumentEncoderWithReflection")
Function_newArgumentEncoderWithBufferIndexWithReflection :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger, reflection: ^AutoreleasedArgument) -> ^Function { Function_newArgumentEncoderWithReflection :: #force_inline proc(self: ^Function, bufferIndex: NS.UInteger, reflection: ^AutoreleasedArgument) -> ^ArgumentEncoder {
return msgSend(^Function, self, "newArgumentEncoderWithBufferIndex:reflection:", bufferIndex, reflection) return msgSend(^ArgumentEncoder, self, "newArgumentEncoderWithBufferIndex:reflection:", bufferIndex, reflection)
} }
@(objc_type=Function, objc_name="options") @(objc_type=Function, objc_name="options")
Function_options :: #force_inline proc(self: ^Function) -> FunctionOptions { Function_options :: #force_inline proc(self: ^Function) -> FunctionOptions {