Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 10x 10x 10x 2x 2x 6x 6x 2x 2x 6x 6x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | // Copyright (c) ZeroC, Inc.
// slice2js version 3.9.0-alpha.0
// <auto-generated>Generated from Slice file 'Forward.ice'.</auto-generated>
/* eslint-disable */
/* jshint ignore: start */
import { Ice } from "@zeroc/ice";
export const Test = {};
Test.F1 = class extends Ice.Value {
constructor(name = "") {
super();
this.name = name;
}
_iceWriteMemberImpl(ostr) {
ostr.writeString(this.name);
}
_iceReadMemberImpl(istr) {
this.name = istr.readString();
}
};
Ice.defineClass(Test.F1, "::Test::F1");
Ice.TypeRegistry.declareValueType("Test.F1", Test.F1);
const iceC_Test_F2_ids = [
"::Ice::Object",
"::Test::F2"
];
Test.F2 = class extends Ice.Object {};
Test.F2Prx = class extends Ice.ObjectPrx {};
Ice.TypeRegistry.declareProxyType("Test.F2Prx", Test.F2Prx);
Ice.defineOperations(
Test.F2,
Test.F2Prx,
iceC_Test_F2_ids,
"::Test::F2", {
"op": [, 0, , , , , , , ]
});
|