aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Walker <tekuconcept@ymail.com>2019-08-20 02:13:50 -0600
committerChris Walker <tekuconcept@ymail.com>2019-08-20 02:13:50 -0600
commit025269f121832f8fe46d299faf426ff37d289699 (patch)
tree388fc4ed0b323c2040076adf92ee991606316d0b
parent1aa9e5c72297add2bda49cbb786e56b3cfd678f3 (diff)
downloadswig-025269f121832f8fe46d299faf426ff37d289699.tar.gz
Dev Checkpoint 201908200213
-rw-r--r--Source/Modules/javascript.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/Modules/javascript.cxx b/Source/Modules/javascript.cxx
index 68c97e641..d2b33b1b4 100644
--- a/Source/Modules/javascript.cxx
+++ b/Source/Modules/javascript.cxx
@@ -788,14 +788,6 @@ int JSEmitter::emitWrapperFunction(Node *n) {
int JSEmitter::emitNativeFunction(Node *n) {
String *wrapname = Getattr(n, "wrap:name");
- // ismember never seems to be the case;
- // it is technically possible to add native member functions,
- // just not at the moment? leaving this as an option for later;
- // the code will automatically defaulting to static space
- if (GetFlag(n, "ismember") != 0)
- Setattr(n, "feature:extend", "1"); // member space
- else
- Setattr(n, "feature:extend", "0"); // static space
enterFunction(n);
state.function(WRAPPER_NAME, wrapname);
exitFunction(n);