diff options
author | Jose <jose@zeroc.com> | 2017-03-20 21:51:43 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-20 21:51:43 +0100 |
commit | a47a05a2f73e377053f9b864b0f36c99a84708af (patch) | |
tree | fe18a51afcd5dd0f8b847c2a5c8cedc630ed19e0 /js/test/Ice/inheritance | |
parent | Fixed gmake build system dependency issue (diff) | |
download | ice-a47a05a2f73e377053f9b864b0f36c99a84708af.tar.bz2 ice-a47a05a2f73e377053f9b864b0f36c99a84708af.tar.xz ice-a47a05a2f73e377053f9b864b0f36c99a84708af.zip |
Fix (ICE-7684) - use Disp prefix only for class with operations skeletons
Diffstat (limited to 'js/test/Ice/inheritance')
-rw-r--r-- | js/test/Ice/inheritance/InitialI.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/js/test/Ice/inheritance/InitialI.js b/js/test/Ice/inheritance/InitialI.js index 969e37cd509..030babe3b2b 100644 --- a/js/test/Ice/inheritance/InitialI.js +++ b/js/test/Ice/inheritance/InitialI.js @@ -12,7 +12,7 @@ var Ice = require("ice").Ice; var Test = require("Test").Test; - class CAI extends Test.MA._CADisp + class CAI extends Test.MA.CADisp { caop(p, current) { @@ -20,7 +20,7 @@ } } - class CBI extends Test.MB._CBDisp + class CBI extends Test.MB.CBDisp { caop(p, current) { @@ -33,7 +33,7 @@ } } - class CCI extends Test.MA._CCDisp + class CCI extends Test.MA.CCDisp { caop(p, current) { @@ -51,7 +51,7 @@ } } - class CDI extends Test.MA._CDDisp + class CDI extends Test.MA.CDDisp { caop(p, current) { @@ -89,7 +89,7 @@ } } - class IAI extends Test.MA._IADisp + class IAI extends Test.MA.IA { iaop(p, current) { @@ -97,7 +97,7 @@ } } - class IB1I extends Test.MB._IB1Disp + class IB1I extends Test.MB.IB1 { iaop(p, current) { @@ -110,7 +110,7 @@ } } - class IB2I extends Test.MB._IB2Disp + class IB2I extends Test.MB.IB2 { iaop(p, current) { @@ -123,7 +123,7 @@ } } - class ICI extends Test.MA._ICDisp + class ICI extends Test.MA.IC { iaop(p, current) { @@ -146,7 +146,7 @@ } } - class InitialI extends Test._InitialDisp + class InitialI extends Test.Initial { constructor(adapter, obj) { |