mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 20:20:27 +00:00
21 lines
388 B
Go
21 lines
388 B
Go
|
package compiler
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/d5/tengo/compiler/ast"
|
||
|
"github.com/d5/tengo/compiler/source"
|
||
|
)
|
||
|
|
||
|
// Error represents a compiler error.
|
||
|
type Error struct {
|
||
|
fileSet *source.FileSet
|
||
|
node ast.Node
|
||
|
error error
|
||
|
}
|
||
|
|
||
|
func (e *Error) Error() string {
|
||
|
filePos := e.fileSet.Position(e.node.Pos())
|
||
|
return fmt.Sprintf("Compile Error: %s\n\tat %s", e.error.Error(), filePos)
|
||
|
}
|