Lines Matching refs:implicit
346 var implicit = [];
357 …} else if (definition && (Array.isArray(definition.implicit) || Array.isArray(definition.explicit)…
358 // Schema.extend({ explicit: [ type1, type2, ... ], implicit: [ type1, type2, ... ] })
359 if (definition.implicit) implicit = implicit.concat(definition.implicit);
364 'or a schema definition ({ implicit: [...], explicit: [...] })');
367 implicit.forEach(function (type$1) {
373 …throw new exception('There is a non-scalar type in the implicit list of a schema. Implicit resolvi…
377 …throw new exception('There is a multi type in the implicit list of a schema. Multi tags can only b…
389 result.implicit = (this.implicit || []).concat(implicit);
392 result.compiledImplicit = compileList(result, 'implicit');
735 implicit: [ property
1081 implicit: [ property
2195 // Neither implicit nor explicit notation.
2226 throwError(state, 'can not read an implicit mapping pair; a colon is missed');
2235 …hrowError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key');
2245 // Common reading code for both explicit and implicit notations.
3238 // Without knowing if keys are implicit/explicit, assume implicit for safety.