(schema: StringMap, name: string)
| 65 | } |
| 66 | |
| 67 | function lookupDefinition(schema: StringMap, name: string): StringMap { |
| 68 | const definitions = checkStringMap(schema.definitions); |
| 69 | return checkStringMap(definitions[name]); |
| 70 | } |
| 71 | |
| 72 | function lookupProperty(schema: StringMap, name: string): StringMap { |
| 73 | const properties = checkStringMap(schema.properties); |
no test coverage detected
searching dependent graphs…