mirror of
https://github.com/golang/go
synced 2024-11-13 18:20:32 -07:00
5a90ede8a4
- initial try-out of AST data structures - removed test_parser (not working anymore - parser needs more infrastructure) SVN=128089
40 lines
804 B
Go
40 lines
804 B
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import Scanner "scanner"
|
|
|
|
|
|
func Scan(filename, src string) {
|
|
S := new(Scanner.Scanner);
|
|
S.Open(filename, src);
|
|
for {
|
|
tok, pos, val := S.Scan();
|
|
print pos, ": ", Scanner.TokenName(tok);
|
|
if tok == Scanner.IDENT || tok == Scanner.NUMBER || tok == Scanner.STRING {
|
|
print " ", val;
|
|
}
|
|
print "\n";
|
|
if tok == Scanner.EOF {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func main() {
|
|
for i := 1; i < sys.argc(); i++ {
|
|
var src string;
|
|
var ok bool;
|
|
src, ok = sys.readfile(sys.argv(i));
|
|
if ok {
|
|
print "scanning " + sys.argv(i) + "\n";
|
|
Scan(sys.argv(i), src);
|
|
} else {
|
|
print "error: cannot read " + sys.argv(i) + "\n";
|
|
}
|
|
}
|
|
}
|