Home
last modified time | relevance | path

Searched refs:fromDecimalString (Results 1 – 2 of 2) sorted by relevance

/third_party/protobuf/js/experimental/runtime/
Dint64_test.js145 const signed = Int64.fromDecimalString(decimals.signed);
148 const unsigned = Int64.fromDecimalString(decimals.unsigned);
165 expect(() => Int64.fromDecimalString('')).toThrow();
169 expect(() => Int64.fromDecimalString('1.5')).toThrow();
173 expect(() => Int64.fromDecimalString('0xa')).toThrow();
Dint64.js72 static fromDecimalString(value) { method in Int64