mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 04:00:24 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
import { LongType, ScalarType } from "./reflection-info";
|
|
import { reflectionLongConvert } from "./reflection-long-convert";
|
|
import { PbLong, PbULong } from "./pb-long";
|
|
/**
|
|
* Creates the default value for a scalar type.
|
|
*/
|
|
export function reflectionScalarDefault(type, longType = LongType.STRING) {
|
|
switch (type) {
|
|
case ScalarType.BOOL:
|
|
return false;
|
|
case ScalarType.UINT64:
|
|
case ScalarType.FIXED64:
|
|
return reflectionLongConvert(PbULong.ZERO, longType);
|
|
case ScalarType.INT64:
|
|
case ScalarType.SFIXED64:
|
|
case ScalarType.SINT64:
|
|
return reflectionLongConvert(PbLong.ZERO, longType);
|
|
case ScalarType.DOUBLE:
|
|
case ScalarType.FLOAT:
|
|
return 0.0;
|
|
case ScalarType.BYTES:
|
|
return new Uint8Array(0);
|
|
case ScalarType.STRING:
|
|
return "";
|
|
default:
|
|
// case ScalarType.INT32:
|
|
// case ScalarType.UINT32:
|
|
// case ScalarType.SINT32:
|
|
// case ScalarType.FIXED32:
|
|
// case ScalarType.SFIXED32:
|
|
return 0;
|
|
}
|
|
}
|