shithub: mc

ref: 8bc429fb93070938b8bc5d459da4f2664c00abae
dir: /mparse/types.myr/

View raw version
pkg parse =
	type srcloc = struct
		file	: byte[:]
		line	: int
		col	: int
	;;

	type attr = union
		`Attrpkglocal
		`Attrextern
		`Attrnoret
	;;
;;