MCPcopy Create free account
hub / github.com/denoland/std / convertExpectedListMember

Function convertExpectedListMember

http/unstable_structured_fields_test.ts:816–821  ·  view source on GitHub ↗
(expected: any[])

Source from the content-addressed store, hash-verified

814// Convert test suite expected list member
815// deno-lint-ignore no-explicit-any
816function convertExpectedListMember(expected: any[]): Item | InnerList {
817 if (isExpectedInnerList(expected)) {
818 return convertExpectedInnerList(expected);
819 }
820 return convertExpectedItem(expected);
821}
822
823// Compare bare items for equality
824function bareItemsEqual(a: BareItem, b: BareItem): boolean {

Callers 1

runConformanceTestsFunction · 0.85

Calls 3

isExpectedInnerListFunction · 0.85
convertExpectedInnerListFunction · 0.85
convertExpectedItemFunction · 0.85

Tested by

no test coverage detected