Searched defs:parser (Results 1 – 17 of 17) sorted by relevance
15 package parser package60 type parser struct { struct61 scanner scanner.Scanner62 tok rune63 errors []error64 comments []Node65 nodes []Node66 lines []int88 func (p *parser) Unpack(pos Pos) scanner.Position {99 func (p *parser) pos() Pos {[all …]
15 package parser package
15 package parser package62 func parse(p *parser) (file *File, errs []error) {101 type parser struct { struct102 scanner scanner.Scanner103 tok rune104 errors []error105 scope *Scope106 comments []*CommentGroup107 eval bool123 func (p *parser) error(err error) {[all …]
11 parser = argparse.ArgumentParser(description='Check OWNERS file syntax') variable
34 def __call__(self, parser, namespace, values, option_string=None): argument
371 parser = argparse.ArgumentParser() variable