Displaying 3 results from an estimated 3 matches for "657acacf".
2013 Apr 25
1
[LLVMdev] Dynamic Type Lookup ...
...case, the GNUstep
> Objective-C runtime). These choices are orthogonal to your choice to use
> LLVM for code generation.
>
> David
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130425/657acacf/attachment.html>
2013 Apr 25
0
[LLVMdev] Dynamic Type Lookup ...
On 24 Apr 2013, at 23:13, Frank White <frankwhite1003 at gmail.com> wrote:
> Hello everyone, I would like to implement functionality something like the following in my sample language.....
>
{snipped not very informative C++ pseudocode.}
> I assume that I will need:
>
> - some type of runtime lookup table to store the class structure of Class A and B.
That depends on
2013 Apr 24
3
[LLVMdev] Dynamic Type Lookup ...
Hello everyone, I would like to implement functionality something like the
following in my sample language.....
class A {
Object attrA1
}
class B {
int attrB1
bool method methTestB ( .... )
}
main () {
bool test
Object a
a = new Class A()
a.attr1 = new Class B()
a.attrB1 = 5
test = a.methTestB(...)
}
I assume that I will need:
- some type of runtime lookup table to store