本文整理汇总了Golang中go/scanner.ErrorList.Sort方法的典型用法代码示例。如果您正苦于以下问题:Golang ErrorList.Sort方法的具体用法?Golang ErrorList.Sort怎么用?Golang ErrorList.Sort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类go/scanner.ErrorList
的用法示例。
在下文中一共展示了ErrorList.Sort方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: CompileStmtList
func (w *World) CompileStmtList(fset *token.FileSet, stmts []ast.Stmt) (Code, error) {
if len(stmts) == 1 {
if s, ok := stmts[0].(*ast.ExprStmt); ok {
return w.CompileExpr(fset, s.X)
}
}
errors := new(scanner.ErrorList)
cc := &compiler{fset, errors, 0, 0}
cb := newCodeBuf()
fc := &funcCompiler{
compiler: cc,
fnType: nil,
outVarsNamed: false,
codeBuf: cb,
flow: newFlowBuf(cb),
labels: make(map[string]*label),
}
bc := &blockCompiler{
funcCompiler: fc,
block: w.scope.block,
}
nerr := cc.numError()
for _, stmt := range stmts {
bc.compileStmt(stmt)
}
fc.checkLabels()
if nerr != cc.numError() {
errors.Sort()
return nil, errors.Err()
}
return &stmtCode{w, fc.get()}, nil
}
示例2: Ast
func (p *Parser) Ast(fs *token.FileSet, path string, files []string, unsaved map[string]UnsavedDocument) (*ast.File, []*ast.File, error) {
ret := make([]*ast.File, len(files))
var retf *ast.File
var errors scanner.ErrorList
for i, f := range files {
f = CanonicalPath(f)
var v *ast.File
var err error
if uns, ok := unsaved[f]; ok {
v, err = parser.ParseFile(fs, f, uns.Data, parser.AllErrors)
} else {
v, err = p.fromCache(fs, f)
}
if v == nil {
return nil, nil, err
}
ret[i] = v
if path == f {
retf = ret[i]
if perr, ok := err.(scanner.ErrorList); ok {
for _, e := range perr {
errors.Add(e.Pos, e.Msg)
}
}
}
}
errors.RemoveMultiples()
errors.Sort()
var err error
if len(errors) != 0 {
err = errors
}
return retf, ret, err
}
示例3: CompileExpr
func (w *World) CompileExpr(fset *token.FileSet, e ast.Expr) (Code, error) {
errors := new(scanner.ErrorList)
cc := &compiler{fset, errors, 0, 0}
ec := cc.compileExpr(w.scope.block, false, e)
if ec == nil {
errors.Sort()
return nil, errors.Err()
}
var eval func(Value, *Thread)
switch t := ec.t.(type) {
case *idealIntType:
// nothing
case *idealFloatType:
// nothing
default:
if tm, ok := t.(*MultiType); ok && len(tm.Elems) == 0 {
return &stmtCode{w, code{ec.exec}}, nil
}
eval = genAssign(ec.t, ec)
}
return &exprCode{w, ec, eval}, nil
}