Lines Matching refs:fileParseContext
767 type fileParseContext struct { struct
775 parent *fileParseContext argument
1010 blueprintsCh := make(chan fileParseContext)
1015 doneParsingCh := make(chan fileParseContext)
1019 var pending []fileParseContext
1029 startParseBlueprintsFile := func(blueprint fileParseContext) {
1067 foundParseableBlueprint := func(blueprint fileParseContext) {
1075 startParseDescendants := func(blueprint fileParseContext) {
1079 …foundParseableBlueprint(fileParseContext{descendant, parser.NewScope(blueprint.Scope), &blueprint,…
1085 startParseDescendants(fileParseContext{"", parser.NewScope(nil), nil, nil})
1159 parent *fileParseContext) (file *parser.File,
1160 subBlueprints []fileParseContext, deps []string, errs []error) {
1217 …scope *parser.Scope, parent *fileParseContext) (file *parser.File, subBlueprints []fileParseContex…
1268 subBlueprintsAndScope := make([]fileParseContext, len(blueprints))
1270 …subBlueprintsAndScope[i] = fileParseContext{b, parser.NewScope(scope), parent, make(chan struct{})}