diff options
author | Chad Austin <chad@imvu.com> | 2013-03-06 03:44:42 -0800 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-04-12 14:25:00 +0300 |
commit | ec62a534e990b20a3ff85cf7aa6da96e6f41e446 (patch) | |
tree | eb301e543683d40928454c43e44dc6e29c1b7e42 /src | |
parent | 3f44445f45aae6b9014985d352dfb74674728881 (diff) |
Remove support for base class method/field name disambiguation: we don't use it yet and I have a method that will match the convention of JavaScript code
Diffstat (limited to 'src')
-rwxr-xr-x | src/embind/embind.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/embind/embind.js b/src/embind/embind.js index 3f10d886..4086e2a5 100755 --- a/src/embind/embind.js +++ b/src/embind/embind.js @@ -155,11 +155,6 @@ function resolveType(type) { if (!type.Handle.prototype.hasOwnProperty(name) && inheritedNames[name].length === 1) { baseClassType = inheritedNames[name][0]; createInheritedFunctionOrProperty(name, type, name, baseClassType); - } else { - for (var j = 0; j < inheritedNames[name].length; j++) { - baseClassType = inheritedNames[name][j]; - createInheritedFunctionOrProperty(baseClassType.name+"_"+name, type, name, baseClassType); - } } } } |