search for: testmethod

Displaying 4 results from an estimated 4 matches for "testmethod".

2007 Apr 04
4
[LLVMdev] For a small help
...that calls e member method of an object. I suppose that this is not a headache but I am impatient in learning :) I would be very thankful if you can show me an example snippet code that does this in LLVM. Below is described my case. Let's say I have a class TestClass class TestClass { int testMethod(int a); } and I want to create a call instruction that calls obj.testMethod(input) where obj is an instance of TestClass TestClass obj; // I have this declared prior int input = 1; // I have declared prior int output; // I have this declared prior too output = obj.testObject(input); // I want to...
2007 Apr 04
0
[LLVMdev] For a small help
...ppose that this is not a headache > but I am impatient in learning :) I would be very thankful if you can > show me an example snippet code that does this in LLVM. Below is > described my case. > > Let's say I have a class TestClass > > class TestClass > { > int testMethod(int a); > } > > and I want to create a call instruction that calls > obj.testMethod(input) where obj is an instance of TestClass > > TestClass obj; // I have this declared prior > int input = 1; // I have declared prior > int output; // I have this declared prior too >...
2006 Aug 17
0
confused about scoping in controller when using render
Hi. Can anyone tell me why I cannot access the testmethod inside my change controller? Thanks very much for any help. I get an undefined method error. If I call the method outside the render :update (as in the comments) it works fine. Thanks very much. ---- view ---- <%= javascript_include_tag :defaults %> <div id="result">tes...
2007 Apr 04
0
[LLVMdev] For a small help
...suppose that this is not a headache > but I am impatient in learning :) I would be very thankful if you can > show me an example snippet code that does this in LLVM. Below is > described my case. > > Let's say I have a class TestClass > > class TestClass > { > int testMethod(int a); > } > > and I want to create a call instruction that calls > obj.testMethod(input) where obj is an instance of TestClass > > TestClass obj; // I have this declared prior > int input = 1; // I have declared prior > int output; // I have this declared prior too > ou...