summaryrefslogtreecommitdiff
path: root/Lisp/method-invocation.lisp
Commit message (Collapse)AuthorAgeFilesLines
...
* LOW-LEVEL-INVOKE: Cosmetic changes.Matthias Benkard2007-09-211-6/+6
| | | | darcs-hash:7e4e25d9e5b35ca41cc7cdbf3aa03e0c38840c78
* Remove even more code that has become obsolete through the new version of ↵Matthias Benkard2007-09-211-10/+0
| | | | | | INVOKE-BY-NAME. darcs-hash:06fc98c5e106ac3fc0fd07ac5cc226ea431d265d
* Rip the old INVOKE-BY-NAME code out and replace it with INVOKE-WITH-CONVERSION.Matthias Benkard2007-09-211-60/+29
| | | | darcs-hash:387f803fd82310a0b84948e46c6d0c0619c54ab7
* LOW-LEVEL-INVOKE: Correctly pass typespec data on to the Objective-C layer.Matthias Benkard2007-09-211-1/+1
| | | | darcs-hash:a2f860fe7c6740ad1aac1887ba7895e927ebdecd
* LOW-LEVEL-INVOKE: Fix indentation.Matthias Benkard2007-09-211-94/+98
| | | | darcs-hash:b089db25b963117e6b5eb49b337f99cb8ded6338
* Stylistic improvements.Matthias Benkard2007-09-201-5/+8
| | | | darcs-hash:5c14bcd5a90050f6b9845057ae09235460a3ca23
* Fix the coercion rules for FLOAT and BOOLEAN values.Matthias Benkard2007-09-201-23/+13
| | | | darcs-hash:d24e207d8f1e0357c8a63ec058ec61318675e89f
* Make +NIL+ a runtime-only constant.Matthias Benkard2007-09-181-1/+1
| | | | darcs-hash:ea2b9fa98340a19c90f9e85f4e75cae52b6edd77
* Simplify the Objective-C layer, make the newest additions compatible with ↵Matthias Benkard2007-09-181-9/+6
| | | | | | the Apple runtime. darcs-hash:c6ec225e9ccf78e267f1a4985971ec9ac3239bc8
* Really support arrays, structs, and unions.Matthias Benkard2007-09-181-3/+17
| | | | darcs-hash:fe9faa15004fae4ab16f95f4ba9a6edf8e260945
* INVOKE-WITH-CONVERSION: Support arrays, structs, and unions, and convert ↵Matthias Benkard2007-09-181-26/+71
| | | | | | Lisp objects into Objective-C instances automatically. darcs-hash:decc92c91c315c1e347b9f5327bfb6e21ccca9a8
* Objective-C layer: Add functions for dealing with classes and metaclasses.Matthias Benkard2007-09-181-3/+2
| | | | darcs-hash:9ce15bb5fff3fb127cf4f6b72e70fa58c1cc2345
* INVOKE-WITH-CONVERSION: Support classes as message receivers.Matthias Benkard2007-09-171-10/+24
| | | | darcs-hash:f27d973190d6ada1ef35ab041229d1c0b88ee11c
* LOW-LEVEL-INVOKE: Support selectors as arguments.Matthias Benkard2007-09-171-1/+4
| | | | darcs-hash:0dc99e4177c665793fe10972f86d6f5f1507c742
* Cache the return values of RETRIEVE-METHOD-SIGNATURE-INFO.Matthias Benkard2007-09-171-1/+3
| | | | darcs-hash:17a199077cab37197bbcbc48d58100c4dd73e76e
* LOW-LEVEL-INVOKE: Don't break upon invocations with a void return type.Matthias Benkard2007-09-171-1/+5
| | | | darcs-hash:50cce0d04ea864174e9fdfea4821fe0b79e46452
* LOW-LEVEL-INVOKE: Fix return type lossage.Matthias Benkard2007-09-171-1/+1
| | | | darcs-hash:21a9356e10f813bd60daa001973cfb37a2ceb66a
* PRIMITIVE-INVOKE: Don't break upon invocations with a void return type.Matthias Benkard2007-09-171-1/+4
| | | | darcs-hash:85d12638eaa8b5a775a9f347b30e0b733c6dfd52
* Add INVOKE-WITH-CONVERSION, a reliable INVOKE-BY-NAME alternative.Matthias Benkard2007-09-171-0/+149
| | | | darcs-hash:fb4eed75cbc7db6627f756944232bc1944eb5a5f
* PRIMITIVE-INVOKE: Make the compiler macro warn the user about unknown methods.Matthias Benkard2007-09-171-3/+9
| | | | darcs-hash:9981c64c80204f96e4ae279dcccf61700125f766
* PRIMITIVE-INVOKE: Make the compiler macro degrade gracefully when a constant ↵Matthias Benkard2007-09-171-1/+6
| | | | | | selector designator designates an unknown selector. darcs-hash:f6a5bf8ff9fb560b7fd991e48982163b27dc58fa
* Define a compiler macro for PRIMITVE-INVOKE that moves constant selector ↵Matthias Benkard2007-09-171-0/+14
| | | | | | conversion to load-time. darcs-hash:eacb4258637999d9d3650e877dc7942c5e254ab8
* PRIMITIVE-INVOKE: Simplify memory allocation.Matthias Benkard2007-09-161-49/+57
| | | | darcs-hash:c123cb0cf9d6d6264904dde03970cd44bb7d3a01
* Add classes for tagged pointers.Matthias Benkard2007-09-161-0/+1
| | | | darcs-hash:93dc7a7ee851ab3947332487b00b990143b81e46
* PRIMITIVE-INVOKE: Support non-pointer arguments.Matthias Benkard2007-09-161-4/+9
| | | | darcs-hash:027144b4dcd760900b90aff40ac18677d50c6a15
* PRIMITIVE-INVOKE: More refactoring.Matthias Benkard2007-09-161-63/+50
| | | | darcs-hash:1440c933de066bcb07053118d3472d18b63bf5a9
* PRIMITIVE-INVOKE: Refactoring.Matthias Benkard2007-09-161-84/+80
| | | | darcs-hash:4f79afa2b6a733dd12c3026839240bd1c74ede3a
* PRIMITIVE-INVOKE: Support string arguments.Matthias Benkard2007-09-161-65/+77
| | | | darcs-hash:88071caa7b863276de551edbcca8010961ca1d14
* PRIMITIVE-INVOKE: Fix a bunch of memory access bugs.Matthias Benkard2007-09-161-69/+76
| | | | darcs-hash:36acfdc03f4004a971aa31a81b87e40c52940f82
* Add test cases for PRIMITIVE-INVOKE and fix some stupid bugs.Matthias Benkard2007-09-161-4/+2
| | | | darcs-hash:d1f3e7e599cad38b28c45448adeec9126d043e05
* Remember to pass self and _cmd to methods.Matthias Benkard2007-09-161-3/+7
| | | | darcs-hash:1f832c3dba42782993127d480d2cb73aabf2406c
* Reimplement PRIMITIVE-INVOKE and rename the old version UNSAFE-PRIMITIVE-INVOKE.Matthias Benkard2007-09-151-6/+74
| | | | darcs-hash:a941bade2677db3d5773c20ffda171c7c9721a98
* Fix a bug in number-to-pointer conversion.Matthias Benkard2007-09-151-1/+1
| | | | darcs-hash:af52a941ca311d4e711c84568b6dd8264737626e
* Introduce PRIMITIVE-INVOKE, a lower-level INVOKE-BY-NAME alternative written ↵Matthias Benkard2007-09-141-0/+34
| | | | | | in Lisp only. darcs-hash:cc01d5054194e3be05efa9fc002da30e04d7068e
* Refactor object coercion.Matthias Benkard2007-09-141-46/+35
| | | | darcs-hash:35adb06189a4734d9dc87155e8023ba9eadebf1a
* Code reorganisation.Matthias Benkard2007-09-141-0/+141
| | | | darcs-hash:be8c8af8504b2ce63cde33a893542d3590abd703
* Add a SELECTOR function and use coerced selectors in Objective C code rather ↵Matthias Benkard2007-08-131-5/+16
| | | | | | than strings. darcs-hash:d10f9eafc3b21bfcfc027a263e8cee007155b89c
* Code cleanup, fix a couple of memory leaks.Matthias Benkard2007-08-121-39/+24
| | | | darcs-hash:629e2764a4ce319c9a7d9bc3a22e6f254633c73f
* Rename the internal function OBJCL-INVOKE-CLASS-METHOD to OBJCL-INVOKE-METHOD.Matthias Benkard2007-08-071-2/+2
| | | | darcs-hash:2a0df2a072f110c491fb0aa97ddade5defd293c5
* Improve type safety of method calls.Matthias Benkard2007-08-071-0/+4
| | | | darcs-hash:261bf7d0a033d5c318d246da40356a9f28badde2
* Put name conversion routines into their own file.Matthias Benkard2007-08-061-29/+15
| | | | darcs-hash:5634f866252465787558f61b05f4bc3006d48f37
* Improve documentation.Matthias Benkard2007-08-051-36/+44
| | | | darcs-hash:2d562d82a7d51808058ac9c42bd54008486ec646
* Docstring changes to make my newly written documentation generator happy.Matthias Benkard2007-08-051-27/+29
| | | | darcs-hash:0ad99140dbf02a186037b4d3e040aa6e623571ca
* Properly document INVOKE and INVOKE-BY-NAME.Matthias Benkard2007-08-041-2/+86
| | | | darcs-hash:f0d069d3c295135cad49752aeb05f96cefd9a753
* Implement the public function INVOKE.Matthias Benkard2007-08-041-3/+29
| | | | darcs-hash:682c1fbf416e7a5192560d02c9a3343a98eb5c02
* Define an external interface, properly document FIND-OBJC-CLASS.Matthias Benkard2007-08-041-3/+12
| | | | darcs-hash:2e4424a65b72a13e3cfa26d07dce945bc35ba8e1
* More file and directory layout refactoring.Matthias Benkard2007-08-041-34/+0
| | | | darcs-hash:9efff3ff2e22c9d8a85f8fcc7fa4487937ddd62f
* Refactor directory and source file layout.Matthias Benkard2007-08-041-0/+96
darcs-hash:0eb031a60f3b86a678869960867410811ca5325c