| OLD | NEW |
| 1 module js_to_cpp; | 1 module js_to_cpp; |
| 2 | 2 |
| 3 // This struct encompasses all of the basic types, so that they | 3 // This struct encompasses all of the basic types, so that they |
| 4 // may be sent from C++ to JS and back for validation. | 4 // may be sent from C++ to JS and back for validation. |
| 5 struct EchoArgs { | 5 struct EchoArgs { |
| 6 int64 si64; | 6 int64 si64; |
| 7 int32 si32; | 7 int32 si32; |
| 8 int16 si16; | 8 int16 si16; |
| 9 int8 si8; | 9 int8 si8; |
| 10 uint64 ui64; | 10 uint64 ui64; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 interface JsSide { | 53 interface JsSide { |
| 54 SetCppSide(CppSide cpp); | 54 SetCppSide(CppSide cpp); |
| 55 | 55 |
| 56 Ping(); | 56 Ping(); |
| 57 Echo(int32 numIterations, EchoArgs arg); | 57 Echo(int32 numIterations, EchoArgs arg); |
| 58 BitFlip(EchoArgs arg); | 58 BitFlip(EchoArgs arg); |
| 59 BackPointer(EchoArgs arg); | 59 BackPointer(EchoArgs arg); |
| 60 }; | 60 }; |
| OLD | NEW |