| Index: Source/bindings/scripts/v8_utilities.py
|
| diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py
|
| index 674a1b8d9969b08a53404147c1c7e289db1f73f4..e96b7c1ec610ad1e29445c96b46e205e2782df91 100644
|
| --- a/Source/bindings/scripts/v8_utilities.py
|
| +++ b/Source/bindings/scripts/v8_utilities.py
|
| @@ -126,7 +126,7 @@ def scoped_name(interface, definition, base_name):
|
| definition.name in ('Constructor', 'NamedConstructor')):
|
| return '%s::%s' % (cpp_name(interface), base_name)
|
| if 'ImplementedInPrivateScript' in definition.extended_attributes:
|
| - return '%s::%s' % (v8_class_name(interface), base_name)
|
| + return '%s::PrivateScript::%s' % (v8_class_name(interface), base_name)
|
| return 'impl->%s' % base_name
|
|
|
|
|
|
|