gopkg.in/yaml.v2.yaml_token_t.typ (field)

89 uses

	gopkg.in/yaml.v2 (current package)
		parserc.go#L57: 	parser.stream_end_produced = parser.tokens[parser.tokens_head].typ == yaml_STREAM_END_TOKEN
		parserc.go#L179: 	if token.typ != yaml_STREAM_START_TOKEN {
		parserc.go#L207: 		for token.typ == yaml_DOCUMENT_END_TOKEN {
		parserc.go#L216: 	if implicit && token.typ != yaml_VERSION_DIRECTIVE_TOKEN &&
		parserc.go#L217: 		token.typ != yaml_TAG_DIRECTIVE_TOKEN &&
		parserc.go#L218: 		token.typ != yaml_DOCUMENT_START_TOKEN &&
		parserc.go#L219: 		token.typ != yaml_STREAM_END_TOKEN {
		parserc.go#L233: 	} else if token.typ != yaml_STREAM_END_TOKEN {
		parserc.go#L245: 		if token.typ != yaml_DOCUMENT_START_TOKEN {
		parserc.go#L287: 	if token.typ == yaml_VERSION_DIRECTIVE_TOKEN ||
		parserc.go#L288: 		token.typ == yaml_TAG_DIRECTIVE_TOKEN ||
		parserc.go#L289: 		token.typ == yaml_DOCUMENT_START_TOKEN ||
		parserc.go#L290: 		token.typ == yaml_DOCUMENT_END_TOKEN ||
		parserc.go#L291: 		token.typ == yaml_STREAM_END_TOKEN {
		parserc.go#L315: 	if token.typ == yaml_DOCUMENT_END_TOKEN {
		parserc.go#L367: 	if token.typ == yaml_ALIAS_TOKEN {
		parserc.go#L386: 	if token.typ == yaml_ANCHOR_TOKEN {
		parserc.go#L395: 		if token.typ == yaml_TAG_TOKEN {
		parserc.go#L407: 	} else if token.typ == yaml_TAG_TOKEN {
		parserc.go#L419: 		if token.typ == yaml_ANCHOR_TOKEN {
		parserc.go#L453: 	if indentless_sequence && token.typ == yaml_BLOCK_ENTRY_TOKEN {
		parserc.go#L467: 	if token.typ == yaml_SCALAR_TOKEN {
		parserc.go#L492: 	if token.typ == yaml_FLOW_SEQUENCE_START_TOKEN {
		parserc.go#L507: 	if token.typ == yaml_FLOW_MAPPING_START_TOKEN {
		parserc.go#L521: 	if block && token.typ == yaml_BLOCK_SEQUENCE_START_TOKEN {
		parserc.go#L535: 	if block && token.typ == yaml_BLOCK_MAPPING_START_TOKEN {
		parserc.go#L591: 	if token.typ == yaml_BLOCK_ENTRY_TOKEN {
		parserc.go#L598: 		if token.typ != yaml_BLOCK_ENTRY_TOKEN && token.typ != yaml_BLOCK_END_TOKEN {
		parserc.go#L606: 	if token.typ == yaml_BLOCK_END_TOKEN {
		parserc.go#L637: 	if token.typ == yaml_BLOCK_ENTRY_TOKEN {
		parserc.go#L644: 		if token.typ != yaml_BLOCK_ENTRY_TOKEN &&
		parserc.go#L645: 			token.typ != yaml_KEY_TOKEN &&
		parserc.go#L646: 			token.typ != yaml_VALUE_TOKEN &&
		parserc.go#L647: 			token.typ != yaml_BLOCK_END_TOKEN {
		parserc.go#L687: 	if token.typ == yaml_KEY_TOKEN {
		parserc.go#L694: 		if token.typ != yaml_KEY_TOKEN &&
		parserc.go#L695: 			token.typ != yaml_VALUE_TOKEN &&
		parserc.go#L696: 			token.typ != yaml_BLOCK_END_TOKEN {
		parserc.go#L703: 	} else if token.typ == yaml_BLOCK_END_TOKEN {
		parserc.go#L738: 	if token.typ == yaml_VALUE_TOKEN {
		parserc.go#L745: 		if token.typ != yaml_KEY_TOKEN &&
		parserc.go#L746: 			token.typ != yaml_VALUE_TOKEN &&
		parserc.go#L747: 			token.typ != yaml_BLOCK_END_TOKEN {
		parserc.go#L780: 	if token.typ != yaml_FLOW_SEQUENCE_END_TOKEN {
		parserc.go#L782: 			if token.typ == yaml_FLOW_ENTRY_TOKEN {
		parserc.go#L797: 		if token.typ == yaml_KEY_TOKEN {
		parserc.go#L808: 		} else if token.typ != yaml_FLOW_SEQUENCE_END_TOKEN {
		parserc.go#L838: 	if token.typ != yaml_VALUE_TOKEN &&
		parserc.go#L839: 		token.typ != yaml_FLOW_ENTRY_TOKEN &&
		parserc.go#L840: 		token.typ != yaml_FLOW_SEQUENCE_END_TOKEN {
		parserc.go#L859: 	if token.typ == yaml_VALUE_TOKEN {
		parserc.go#L865: 		if token.typ != yaml_FLOW_ENTRY_TOKEN && token.typ != yaml_FLOW_SEQUENCE_END_TOKEN {
		parserc.go#L916: 	if token.typ != yaml_FLOW_MAPPING_END_TOKEN {
		parserc.go#L918: 			if token.typ == yaml_FLOW_ENTRY_TOKEN {
		parserc.go#L933: 		if token.typ == yaml_KEY_TOKEN {
		parserc.go#L939: 			if token.typ != yaml_VALUE_TOKEN &&
		parserc.go#L940: 				token.typ != yaml_FLOW_ENTRY_TOKEN &&
		parserc.go#L941: 				token.typ != yaml_FLOW_MAPPING_END_TOKEN {
		parserc.go#L948: 		} else if token.typ != yaml_FLOW_MAPPING_END_TOKEN {
		parserc.go#L979: 	if token.typ == yaml_VALUE_TOKEN {
		parserc.go#L985: 		if token.typ != yaml_FLOW_ENTRY_TOKEN && token.typ != yaml_FLOW_MAPPING_END_TOKEN {
		parserc.go#L1025: 	for token.typ == yaml_VERSION_DIRECTIVE_TOKEN || token.typ == yaml_TAG_DIRECTIVE_TOKEN {
		parserc.go#L1026: 		if token.typ == yaml_VERSION_DIRECTIVE_TOKEN {
		parserc.go#L1041: 		} else if token.typ == yaml_TAG_DIRECTIVE_TOKEN {
		scannerc.go#L593: 	if token.typ == yaml_STREAM_END_TOKEN {
		scannerc.go#L953: 			typ:        typ,
		scannerc.go#L978: 			typ:        yaml_BLOCK_END_TOKEN,
		scannerc.go#L1010: 		typ:        yaml_STREAM_START_TOKEN,
		scannerc.go#L1042: 		typ:        yaml_STREAM_END_TOKEN,
		scannerc.go#L1099: 		typ:        typ,
		scannerc.go#L1130: 		typ:        typ,
		scannerc.go#L1162: 		typ:        typ,
		scannerc.go#L1188: 		typ:        yaml_FLOW_ENTRY_TOKEN,
		scannerc.go#L1230: 		typ:        yaml_BLOCK_ENTRY_TOKEN,
		scannerc.go#L1269: 		typ:        yaml_KEY_TOKEN,
		scannerc.go#L1290: 			typ:        yaml_KEY_TOKEN,
		scannerc.go#L1339: 		typ:        yaml_VALUE_TOKEN,
		scannerc.go#L1530: 			typ:        yaml_VERSION_DIRECTIVE_TOKEN,
		scannerc.go#L1548: 			typ:        yaml_TAG_DIRECTIVE_TOKEN,
		scannerc.go#L1825: 		typ:        typ,
		scannerc.go#L1913: 		typ:        yaml_TAG_TOKEN,
		scannerc.go#L2246: 		typ:        yaml_SCALAR_TOKEN,
		scannerc.go#L2557: 		typ:        yaml_SCALAR_TOKEN,
		scannerc.go#L2699: 		typ:        yaml_SCALAR_TOKEN,
		yamlh.go#L197: 	typ yaml_token_type_t