コード例 #1
0
ファイル: checkglobals.go プロジェクト: MovingtoMars/nnvm
func checkMismatchedTypesGlobal(t1, t2 types.Type, g *ssa.Global) error {
	if !t1.Equals(t2) {
		return &GlobalError{
			Global:  g,
			Message: "Mismatched types: `" + t1.String() + "` and `" + t2.String() + "`",
		}
	}

	return nil
}
コード例 #2
0
ファイル: validate.go プロジェクト: MovingtoMars/nnvm
func errIfMismatchedTypes(t1, t2 types.Type, i ssa.Instruction) error {
	if !t1.Equals(t2) {
		return &InstrError{
			Message: fmt.Sprintf("Mismatched types `%s` and `%s`", t1, t2),
			Instr:   i,
		}
	}

	return nil
}