summaryrefslogtreecommitdiff
path: root/Source/Modules/javascript.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Modules/javascript.cxx')
-rw-r--r--Source/Modules/javascript.cxx31
1 files changed, 15 insertions, 16 deletions
diff --git a/Source/Modules/javascript.cxx b/Source/Modules/javascript.cxx
index 2fbc5505c..fbc7ab455 100644
--- a/Source/Modules/javascript.cxx
+++ b/Source/Modules/javascript.cxx
@@ -264,8 +264,6 @@ protected:
*/
Node *getBaseClass(Node *n);
- Parm *skipIgnoredArgs(Parm *p);
-
virtual int createNamespace(String *scope);
virtual Hash *createNamespaceEntry(const char *name, const char *parent, const char *parent_mangled);
@@ -689,17 +687,6 @@ int JSEmitter::initialize(Node * /*n */ ) {
return SWIG_OK;
}
-/* ---------------------------------------------------------------------
- * skipIgnoredArgs()
- * --------------------------------------------------------------------- */
-
-Parm *JSEmitter::skipIgnoredArgs(Parm *p) {
- while (checkAttribute(p, "tmap:in:numinputs", "0")) {
- p = Getattr(p, "tmap:in:next");
- }
- return p;
-}
-
/* -----------------------------------------------------------------------------
* JSEmitter::getBaseClass() : the node of the base class or NULL
*
@@ -1537,7 +1524,7 @@ void JSCEmitter::marshalInputArgs(Node *n, ParmList *parms, Wrapper *wrapper, Ma
// process arguments
int i = 0;
- for (p = parms; p; i++) {
+ for (p = parms; p;) {
String *arg = NewString("");
String *type = Getattr(p, "type");
@@ -1550,19 +1537,24 @@ void JSCEmitter::marshalInputArgs(Node *n, ParmList *parms, Wrapper *wrapper, Ma
case Function:
if (is_member && !is_static && i == 0) {
Printv(arg, "thisObject", 0);
+ i++;
} else {
Printf(arg, "argv[%d]", i - startIdx);
+ i += GetInt(p, "tmap:in:numinputs");
}
break;
case Setter:
if (is_member && !is_static && i == 0) {
Printv(arg, "thisObject", 0);
+ i++;
} else {
Printv(arg, "value", 0);
+ i++;
}
break;
case Ctor:
Printf(arg, "argv[%d]", i);
+ i += GetInt(p, "tmap:in:numinputs");
break;
default:
Printf(stderr, "Illegal MarshallingMode.");
@@ -2173,7 +2165,7 @@ void V8Emitter::marshalInputArgs(Node *n, ParmList *parms, Wrapper *wrapper, Mar
Setattr(n, ARGCOUNT, argcount);
int i = 0;
- for (p = parms; p; i++) {
+ for (p = parms; p;) {
String *arg = NewString("");
String *type = Getattr(p, "type");
@@ -2185,26 +2177,33 @@ void V8Emitter::marshalInputArgs(Node *n, ParmList *parms, Wrapper *wrapper, Mar
case Getter:
if (is_member && !is_static && i == 0) {
Printv(arg, "info.Holder()", 0);
+ i++;
} else {
- Printf(arg, "args[%d]", i - startIdx);
+ Printf(arg, "args[%d]", i - startIdx);
+ i += GetInt(p, "tmap:in:numinputs");
}
break;
case Function:
if (is_member && !is_static && i == 0) {
Printv(arg, "args.Holder()", 0);
+ i++;
} else {
Printf(arg, "args[%d]", i - startIdx);
+ i += GetInt(p, "tmap:in:numinputs");
}
break;
case Setter:
if (is_member && !is_static && i == 0) {
Printv(arg, "info.Holder()", 0);
+ i++;
} else {
Printv(arg, "value", 0);
+ i++;
}
break;
case Ctor:
Printf(arg, "args[%d]", i);
+ i += GetInt(p, "tmap:in:numinputs");
break;
default:
Printf(stderr, "Illegal MarshallingMode.");