diff options
author | Jose <jose@zeroc.com> | 2018-09-20 14:14:45 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-09-20 14:14:45 +0200 |
commit | 260b8bf8523164f68bdf97d469616cbf01c71cc0 (patch) | |
tree | 102ff9d0f45ae66a0c38dc02aa03cbf054c65358 /js/src | |
parent | Merge branch '3.7.1-xcode10' into 3.7 (diff) | |
download | ice-260b8bf8523164f68bdf97d469616cbf01c71cc0.tar.bz2 ice-260b8bf8523164f68bdf97d469616cbf01c71cc0.tar.xz ice-260b8bf8523164f68bdf97d469616cbf01c71cc0.zip |
Test using Value as operation parameter
Fix a bug in slice2java that generate bogus code or using
Value as an Slice operation parameter
Fix a bug in JavaScript mapping that cause a run-time error
when invoking an operation that defines Value as an input
parameter
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/Ice/Operation.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/src/Ice/Operation.js b/js/src/Ice/Operation.js index 5fd85b1404a..fbfda6c886b 100644 --- a/js/src/Ice/Operation.js +++ b/js/src/Ice/Operation.js @@ -31,7 +31,8 @@ const builtinHelpers = Ice.DoubleHelper, Ice.StringHelper, Ice.Value, - Ice.ObjectPrx + Ice.ObjectPrx, + Ice.Value ]; function parseParam(p) |