1 !<arch> 2 __.PKGDEF 0 0 0 644 11456 ` 3 go object darwin amd64 go1.5.1 X:none 4 build id "ee1c60fa933bed0f228cc1d8d8dd878df72236c1" 5 6 $$ 7 package format 8 import runtime "runtime" 9 import bytes "bytes" 10 import ast "go/ast" 11 import token "go/token" 12 import strings "strings" 13 import parser "go/parser" 14 import printer "go/printer" 15 type @"go/token".Pos int 16 func (@"go/token".p2 @"go/token".Pos) IsValid () (? bool) { return @"go/token".p2 != @"go/token".Pos(0x0) } 17 type @"go/ast".Comment struct { Slash @"go/token".Pos; Text string } 18 func (@"go/ast".c2 *@"go/ast".Comment "esc:0x1") End () (? @"go/token".Pos) { return @"go/token".Pos(int(@"go/ast".c2.Slash) + len(@"go/ast".c2.Text)) } 19 func (@"go/ast".c2 *@"go/ast".Comment "esc:0x1") Pos () (? @"go/token".Pos) { return @"go/ast".c2.Slash } 20 type @"go/ast".CommentGroup struct { List []*@"go/ast".Comment } 21 func (@"go/ast".g2 *@"go/ast".CommentGroup "esc:0x1") End () (? @"go/token".Pos) { return @"go/ast".g2.List[len(@"go/ast".g2.List) - 0x1].End() } 22 func (@"go/ast".g2 *@"go/ast".CommentGroup "esc:0x1") Pos () (? @"go/token".Pos) { return @"go/ast".g2.List[0x0].Pos() } 23 func (@"go/ast".g2 *@"go/ast".CommentGroup "esc:0x9") Text () (? string) 24 type @"go/ast".ObjKind int 25 func (@"go/ast".kind2 @"go/ast".ObjKind) String () (? string) { return @"go/ast".objKindStrings[@"go/ast".kind2] } 26 type @"go/ast".Object struct { Kind @"go/ast".ObjKind; Name string; Decl interface {}; Data interface {}; Type interface {} } 27 func (@"go/ast".obj2 *@"go/ast".Object "esc:0x1") Pos () (? @"go/token".Pos) 28 type @"go/ast".Ident struct { NamePos @"go/token".Pos; Name string; Obj *@"go/ast".Object } 29 func (@"go/ast".x2 *@"go/ast".Ident "esc:0x1") End () (? @"go/token".Pos) { return @"go/token".Pos(int(@"go/ast".x2.NamePos) + len(@"go/ast".x2.Name)) } 30 func (@"go/ast".id2 *@"go/ast".Ident "esc:0x1") IsExported () (? bool) 31 func (@"go/ast".x2 *@"go/ast".Ident "esc:0x1") Pos () (? @"go/token".Pos) { return @"go/ast".x2.NamePos } 32 func (@"go/ast".id2 *@"go/ast".Ident "esc:0x22") String () (? string) { if @"go/ast".id2 != nil { return @"go/ast".id2.Name }; return "<nil>" } 33 func (? *@"go/ast".Ident) @"go/ast".exprNode () { } 34 type @"go/ast".Decl interface { End() (? @"go/token".Pos); Pos() (? @"go/token".Pos); @"go/ast".declNode() } 35 type @"go/ast".Scope struct { Outer *@"go/ast".Scope; Objects map[string]*@"go/ast".Object } 36 func (@"go/ast".s2 *@"go/ast".Scope "esc:0x1") Insert (@"go/ast".obj3 *@"go/ast".Object) (@"go/ast".alt1 *@"go/ast".Object) { if @"go/ast".alt1 = @"go/ast".s2.Objects[@"go/ast".obj3.Name]; @"go/ast".alt1 == nil { @"go/ast".s2.Objects[@"go/ast".obj3.Name] = @"go/ast".obj3 }; return } 37 func (@"go/ast".s2 *@"go/ast".Scope "esc:0x1") Lookup (@"go/ast".name3 string "esc:0x1") (? *@"go/ast".Object) { return @"go/ast".s2.Objects[@"go/ast".name3] } 38 func (@"go/ast".s2 *@"go/ast".Scope) String () (? string) 39 type @"go/token".Token int 40 func (@"go/token".tok2 @"go/token".Token) IsKeyword () (? bool) { return @"go/token".Token(0x3c) < @"go/token".tok2 && @"go/token".tok2 < @"go/token".Token(0x56) } 41 func (@"go/token".tok2 @"go/token".Token) IsLiteral () (? bool) { return @"go/token".Token(0x3) < @"go/token".tok2 && @"go/token".tok2 < @"go/token".Token(0xa) } 42 func (@"go/token".tok2 @"go/token".Token) IsOperator () (? bool) { return @"go/token".Token(0xb) < @"go/token".tok2 && @"go/token".tok2 < @"go/token".Token(0x3b) } 43 func (@"go/token".op2 @"go/token".Token) Precedence () (? int) 44 func (@"go/token".tok2 @"go/token".Token) String () (? string) 45 type @"go/ast".BasicLit struct { ValuePos @"go/token".Pos; Kind @"go/token".Token; Value string } 46 func (@"go/ast".x2 *@"go/ast".BasicLit "esc:0x1") End () (? @"go/token".Pos) { return @"go/token".Pos(int(@"go/ast".x2.ValuePos) + len(@"go/ast".x2.Value)) } 47 func (@"go/ast".x2 *@"go/ast".BasicLit "esc:0x1") Pos () (? @"go/token".Pos) { return @"go/ast".x2.ValuePos } 48 func (? *@"go/ast".BasicLit) @"go/ast".exprNode () { } 49 type @"go/ast".ImportSpec struct { Doc *@"go/ast".CommentGroup; Name *@"go/ast".Ident; Path *@"go/ast".BasicLit; Comment *@"go/ast".CommentGroup; EndPos @"go/token".Pos } 50 func (@"go/ast".s2 *@"go/ast".ImportSpec "esc:0x1") End () (? @"go/token".Pos) { if @"go/ast".s2.EndPos != @"go/token".Pos(0x0) { return @"go/ast".s2.EndPos }; return @"go/ast".s2.Path.End() } 51 func (@"go/ast".s2 *@"go/ast".ImportSpec "esc:0x1") Pos () (? @"go/token".Pos) { if @"go/ast".s2.Name != nil { return @"go/ast".s2.Name.Pos() }; return @"go/ast".s2.Path.Pos() } 52 func (? *@"go/ast".ImportSpec) @"go/ast".specNode () { } 53 type @"go/ast".File struct { Doc *@"go/ast".CommentGroup; Package @"go/token".Pos; Name *@"go/ast".Ident; Decls []@"go/ast".Decl; Scope *@"go/ast".Scope; Imports []*@"go/ast".ImportSpec; Unresolved []*@"go/ast".Ident; Comments []*@"go/ast".CommentGroup } 54 func (@"go/ast".f2 *@"go/ast".File "esc:0x9") End () (? @"go/token".Pos) 55 func (@"go/ast".f2 *@"go/ast".File "esc:0x1") Pos () (? @"go/token".Pos) { return @"go/ast".f2.Package } 56 import sync "sync" // indirect 57 type @"sync".Mutex struct { @"sync".state int32; @"sync".sema uint32 } 58 func (@"sync".m1 *@"sync".Mutex) Lock () 59 func (@"sync".m1 *@"sync".Mutex) Unlock () 60 type @"sync".Locker interface { Lock(); Unlock() } 61 type @"sync".RWMutex struct { @"sync".w @"sync".Mutex; @"sync".writerSem uint32; @"sync".readerSem uint32; @"sync".readerCount int32; @"sync".readerWait int32 } 62 func (@"sync".rw1 *@"sync".RWMutex) Lock () 63 func (@"sync".rw1 *@"sync".RWMutex) RLock () 64 func (@"sync".rw2 *@"sync".RWMutex "esc:0x12") RLocker () (? @"sync".Locker) { return (*@"sync".rlocker)(@"sync".rw2) } 65 func (@"sync".rw1 *@"sync".RWMutex) RUnlock () 66 func (@"sync".rw1 *@"sync".RWMutex) Unlock () 67 type @"go/token".lineInfo struct { Offset int; Filename string; Line int } 68 type @"go/token".Position struct { Filename string; Offset int; Line int; Column int } 69 func (@"go/token".pos2 *@"go/token".Position "esc:0x1") IsValid () (? bool) { return @"go/token".pos2.Line > 0x0 } 70 func (@"go/token".pos2 @"go/token".Position "esc:0x12") String () (? string) 71 type @"go/token".File struct { @"go/token".set *@"go/token".FileSet; @"go/token".name string; @"go/token".base int; @"go/token".size int; @"go/token".lines []int; @"go/token".infos []@"go/token".lineInfo } 72 func (@"go/token".f1 *@"go/token".File "esc:0x9") AddLine (@"go/token".offset2 int) 73 func (@"go/token".f1 *@"go/token".File "esc:0x9") AddLineInfo (@"go/token".offset2 int, @"go/token".filename3 string, @"go/token".line4 int) 74 func (@"go/token".f2 *@"go/token".File "esc:0x1") Base () (? int) { return @"go/token".f2.@"go/token".base } 75 func (@"go/token".f2 *@"go/token".File "esc:0x1") Line (@"go/token".p3 @"go/token".Pos) (? int) 76 func (@"go/token".f2 *@"go/token".File "esc:0x9") LineCount () (? int) 77 func (@"go/token".f1 *@"go/token".File "esc:0x9") MergeLine (@"go/token".line2 int) 78 func (@"go/token".f2 *@"go/token".File "esc:0x22") Name () (? string) { return @"go/token".f2.@"go/token".name } 79 func (@"go/token".f2 *@"go/token".File "esc:0x1") Offset (@"go/token".p3 @"go/token".Pos) (? int) 80 func (@"go/token".f2 *@"go/token".File "esc:0x1") Pos (@"go/token".offset3 int) (? @"go/token".Pos) 81 func (@"go/token".f2 *@"go/token".File "esc:0x22") Position (@"go/token".p3 @"go/token".Pos) (@"go/token".pos1 @"go/token".Position) 82 func (@"go/token".f2 *@"go/token".File "esc:0x22") PositionFor (@"go/token".p3 @"go/token".Pos, @"go/token".adjusted4 bool) (@"go/token".pos1 @"go/token".Position) 83 func (@"go/token".f2 *@"go/token".File "esc:0x9") SetLines (@"go/token".lines3 []int) (? bool) 84 func (@"go/token".f1 *@"go/token".File "esc:0x9") SetLinesForContent (@"go/token".content2 []byte "esc:0x1") 85 func (@"go/token".f2 *@"go/token".File "esc:0x1") Size () (? int) { return @"go/token".f2.@"go/token".size } 86 func (@"go/token".f2 *@"go/token".File "esc:0x22") @"go/token".position (@"go/token".p3 @"go/token".Pos, @"go/token".adjusted4 bool) (@"go/token".pos1 @"go/token".Position) 87 func (@"go/token".f4 *@"go/token".File "esc:0x22") @"go/token".unpack (@"go/token".offset5 int, @"go/token".adjusted6 bool) (@"go/token".filename1 string, @"go/token".line2 int, @"go/token".column3 int) 88 type @"go/token".FileSet struct { @"go/token".mutex @"sync".RWMutex; @"go/token".base int; @"go/token".files []*@"go/token".File; @"go/token".last *@"go/token".File } 89 func (@"go/token".s2 *@"go/token".FileSet) AddFile (@"go/token".filename3 string, @"go/token".base4 int, @"go/token".size5 int) (? *@"go/token".File) 90 func (@"go/token".s2 *@"go/token".FileSet) Base () (? int) 91 func (@"go/token".s2 *@"go/token".FileSet) File (@"go/token".p3 @"go/token".Pos) (@"go/token".f1 *@"go/token".File) 92 func (@"go/token".s1 *@"go/token".FileSet) Iterate (@"go/token".f2 func(? *@"go/token".File) (? bool) "esc:0x1") 93 func (@"go/token".s2 *@"go/token".FileSet) Position (@"go/token".p3 @"go/token".Pos) (@"go/token".pos1 @"go/token".Position) 94 func (@"go/token".s2 *@"go/token".FileSet) PositionFor (@"go/token".p3 @"go/token".Pos, @"go/token".adjusted4 bool) (@"go/token".pos1 @"go/token".Position) 95 func (@"go/token".s2 *@"go/token".FileSet) Read (@"go/token".decode3 func(? interface {}) (? error) "esc:0x1") (? error) 96 func (@"go/token".s2 *@"go/token".FileSet) Write (@"go/token".encode3 func(? interface {}) (? error) "esc:0x1") (? error) 97 func (@"go/token".s2 *@"go/token".FileSet) @"go/token".file (@"go/token".p3 @"go/token".Pos) (? *@"go/token".File) 98 func @"".Parse (@"".fset5 *@"go/token".FileSet, @"".filename6 string, @"".src7 []byte, @"".fragmentOk8 bool) (@"".file1 *@"go/ast".File, @"".sourceAdj2 func(@"".src []byte, @"".indent int) (? []byte), @"".indentAdj3 int, @"".err4 error) 99 type @"go/printer".Mode uint 100 import io "io" // indirect 101 type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) } 102 type @"go/ast".Node interface { End() (? @"go/token".Pos); Pos() (? @"go/token".Pos) } 103 type @"go/printer".Config struct { Mode @"go/printer".Mode; Tabwidth int; Indent int } 104 func (@"go/printer".cfg2 *@"go/printer".Config "esc:0x1") Fprint (@"go/printer".output3 @"io".Writer, @"go/printer".fset4 *@"go/token".FileSet, @"go/printer".node5 interface {}) (? error) 105 func (@"go/printer".cfg2 *@"go/printer".Config "esc:0x1") @"go/printer".fprint (@"go/printer".output3 @"io".Writer, @"go/printer".fset4 *@"go/token".FileSet, @"go/printer".node5 interface {}, @"go/printer".nodeSizes6 map[@"go/ast".Node]int) (@"go/printer".err1 error) 106 func @"".Format (@"".fset3 *@"go/token".FileSet, @"".file4 *@"go/ast".File, @"".sourceAdj5 func(@"".src []byte, @"".indent int) (? []byte) "esc:0x1", @"".indentAdj6 int, @"".src7 []byte "esc:0x9", @"".cfg8 @"go/printer".Config) (? []byte, ? error) 107 func @"".IsSpace (@"".b2 byte) (? bool) { return @"".b2 == byte(0x20) || @"".b2 == byte(0x9) || @"".b2 == byte(0xa) || @"".b2 == byte(0xd) } 108 func @"".init () 109 var @"go/ast".objKindStrings [7]string 110 type @"sync".rlocker struct { @"sync".w @"sync".Mutex; @"sync".writerSem uint32; @"sync".readerSem uint32; @"sync".readerCount int32; @"sync".readerWait int32 } 111 func (@"sync".r1 *@"sync".rlocker) Lock () 112 func (@"sync".r1 *@"sync".rlocker) Unlock () 113 114 $$ 115 _go_.o 0 0 0 644 15768 ` 116 go object darwin amd64 go1.5.1 X:none 117 118 ! 119 go13ldbytes.ago/ast.ago/parser.ago/printer.ago/token.astrings.a"".ParseeH%HD$H;A`H11H$(H$0H$ H$H$H$H$H$H$H$HH$H$H\$HD$H\$H|$HHHKHOH$H$H$H\$H$H\$HD$(H\$0H$HD$8HL$@H$0H$(HR$DH$HX HL$HD$HL$HH$HD$PHD$HH\$HD$\$ H$HH\$HD$ 124 Ht$HD$ HL$(H$H$H$HH$H$HH$H)H~SHH$H$Ht$H|$HL$HD$ H$Ht$(H\$0H$H\$8H$H$H$H,>H,$H$H\$HD$H$H$H$HH9H$HT$XH$H\$`H$Ht$hH$HH$H$H\$HD$H\$H|$HHHKHOH$H$H$H\$H$H\$HD$(H\$0H$HD$8HL$@H$0H$(HuHH$HH$HX HL$HD$HL$HH$HD$PHD$HH\$HD$\$ uHH$HH\$HD$Ht$HD$ HL$(H$H$H$HH$H$HH$H)H~SHH$H$Ht$H|$HL$HD$ H$Ht$(H\$0H$H\$8H$H$H$H,>H,$H$H\$HD$H$H$H$HH9H$HH$HH$H$HHH9HHH 128 HHH) 129 HHH)}HL$pH$H|$xH$H$H$HH$H$H\$HD$H\$H|$HHHKHOH$H$H$H\$H$H\$HD$(H\$0H$HD$8H\$@H$0H$(HuHH$H$ HH-H,$HL$HD$HT$H\$ HL$(HD$0HT$8H~B 133 type.[]uint8 134 runtime.convT2E 135 &go/parser.ParseFile<go.string."expected 'package'" 136 strings.Contains,go.string."package p;" 137 2runtime.stringtoslicebytetype.[]uint8 138 &runtime.growslice_n 139 runtime.memmovetype.[]uint8 142 runtime.convT2E 144 &go/parser.ParseFile """.Parse.func1f @go.string."expected declaration" 147 strings.ContainsBgo.string."package p; func _() {" 148 2runtime.stringtoslicebytetype.[]uint8 149 &runtime.growslice_n 150 runtime.memmovetype.[]uint8 151 runtime.convT2E 152 &go/parser.ParseFile""".Parse.func2ftype.[]uint8 153 "runtime.growslice 154 $runtime.panicslice 155 $runtime.panicslice 156 0runtime.morestack_noctxt."".autotmp_0017type.uintptr"".autotmp_0016type.int"".autotmp_0015type.[]uint8"".autotmp_0014type.[]uint8"".autotmp_0011type.[]uint8"".autotmp_0010_type.[]uint8"".autotmp_0009type.[]uint8"".autotmp_0008type.[]uint8"".autotmp_0007type.bool"".autotmp_0006type.string"".autotmp_0005type.[]uint8"".autotmp_0003type.string"".autotmp_0002/type.[]uint8"".fsrctype.[]uint8"".psrctype.[]uint8"".errtype.error"".indentAdjtype.int"".sourceAdj>type.func([]uint8, int) []uint8"".filep"type.*go/ast.File"".fragmentOk`type.bool"".src0type.[]uint8"".filenametype.string"".fset,type.*go/token.FileSet@RM \4Ko 161 K+?/ DdzVyhzV.Tgclocals028b3b085201053c62c417bb4f38aaf0Tgclocalsc10497e5baca687181c840f1eb9f979ajprebuilts/go/darwin-x86/src/internal/format/format.go"".Format&&eH%H$pH;A HH$8H$@1H$hH$pH$x1H$H$H$(1H9yHH$HD$HD$pHD$hH$ H\$`H1H9 H$PH$HL$hH$HD$H$HL$H$HD$HL$`HH$HD$ H$HL$(HD$0HL$8Ht21H$hH$pH$xH$H$HHD$p1HhL@LHL9wELI)I)ItM*L$hL$pL$x1H$H$HHH$HH\$HH\$HD$11HD$@H9}bH9H+@ }@ s@ 167 i@ t(H9MH 169 uHHHHD$@H9|E1H|$XH$HH9H$H$L$LL$L$LL$H$HL$L)H~[HH$H$Ht$LL$LL$HD$ H$L$Ht$(H\$0H$H\$8H$H$J,H,$H$H\$H|$H$H$H$HH9IL$L$H$IH$H\$XHl$@L$H11L9H9L$8H)I)ItMI1LL9})@ rHHHL9|Hu @tH1H|$PHt$HH9}9LLLHL9IH$H HH|$PHt$HH9|H$0HHH$`HH$HD$HD$xHD$hH$ H\$`H1H9H$PH$HL$hH$HD$H$HL$H$HD$HL$`HH$HD$ H$HL$(HD$0HL$8H$H$Ht21H$hH$pH$xH$H$HHD$x1HhL@LHL9FLI)I)ItM*L$L$L$LD$L$LL$H$`H\$H$(HH\$ H$H|$(H\$0H$H$H$H$HH$H$HH$H)H~SHH$H$HL$Ht$HT$HD$ H$HL$(H\$0H$H\$8H$H$H$H,H,$H$H\$H|$H$H$8H$@H$H$HH9IL$IHH~HHHH9H+@ @ @ 172 z@ <t HHL$HHH9KH)I)IItM HL$L$L$LL$L$LL$H$HL$L)H~[HH$H$HL$L\$LT$HD$ L$H$HL$(H\$0H$H\$8H$H$J,H,$H$H\$H|$H$H$H$HH9w:H$H$hH$pH$x1H$H$HHHH$HH\$HH\$HD$H-H,$HL$HD$LT$H\$ H|$PHt$HLd$(L\$0LT$8LIL$L$LL$@ H{HTV 185 "type.bytes.Buffer 186 "runtime.newobject>go.itab.*bytes.Buffer.io.Writer"type.*go/ast.File 187 6go/printer.(*Config).Fprint 188 $runtime.panicslice$type.*bytes.Buffertype.io.Writer>go.itab.*bytes.Buffer.io.Writer 189 runtime.typ2Itabtype.[]uint8 192 &runtime.growslice_n 194 runtime.memmove"type.bytes.Buffer 195 "runtime.newobject>go.itab.*bytes.Buffer.io.Writer"type.*go/ast.File 196 6go/printer.(*Config).Fprinttype.[]uint8 197 &runtime.growslice_n 198 runtime.memmovetype.[]uint8 199 &runtime.growslice_n 200 runtime.memmove" 201 $runtime.panicslice" 202 $runtime.panicslice" 203 $runtime.panicindex" 204 $runtime.panicslice# 205 $runtime.panicslice#$type.*bytes.Buffer#type.io.Writer#>go.itab.*bytes.Buffer.io.Writer# 206 runtime.typ2Itab#type.[]uint8$ 207 "runtime.growslice% 208 $runtime.panicslice% 209 $runtime.panicslice& 210 $runtime.panicslice& 211 $runtime.panicindex& 212 $runtime.panicindex& 213 0runtime.morestack_noctxt`"".autotmp_0058type.uintptr"".autotmp_0057type.int"".autotmp_0056type.[]uint8"".autotmp_0055type.bool"".autotmp_0054type.int"".autotmp_0053type.uintptr"".autotmp_0052type.int"".autotmp_0051type.[]uint8"".autotmp_0050type.*uint8"".autotmp_0049type.uint8"".autotmp_0047type.*uint8"".autotmp_0046type.int"".autotmp_0045type.int"".autotmp_0043type.int"".autotmp_0042_type.[]uint8"".autotmp_0039type.[]uint8"".autotmp_0038type.[]uint8"".autotmp_0037type.int"".autotmp_0036type.[]uint8"".autotmp_0035type.[]uint8"".autotmp_0034type.int"".autotmp_0033"type.*go/ast.File"".autotmp_0032$type.*bytes.Buffer"".autotmp_0031type.int"".autotmp_0029type.[]uint8"".autotmp_0028type.[]uint8"".autotmp_0027type.[]uint8"".autotmp_0025type.int"".autotmp_0024/type.[]uint8"".autotmp_0022"type.*go/ast.File"".autotmp_0021$type.*bytes.Buffer"".&buf$type.*bytes.Buffer"".&buf$type.*bytes.Buffer"".~r0type.[]uint8"".errtype.error"".itype.int"".indenttype.int"".restype.[]uint8"".jtype.int"".itype.int"".~r7type.error"".~r6type.[]uint8"".cfgp,type.go/printer.Config"".src@type.[]uint8"".indentAdj0type.int"".sourceAdj >type.func([]uint8, int) []uint8"".file"type.*go/ast.File"".fset,type.*go/token.FileSetD"\^2d2D 221 : 223 '2E2 c 228 X|*VVV_R.Tgclocalse84f6ab826dbab49fd7da72039d89664Tgclocals4023d37a46d650dea4f91439d0b33791jprebuilts/go/darwin-x86/src/internal/format/format.go"".IsSpace@@D$< t< t< 235 t< D$D$ "".~r1type.bool"".btype.uint8 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbjprebuilts/go/darwin-x86/src/internal/format/format.go"".Parse.func1eH%H;aH01H\$XH\$`H\$hH\$PHl$@LD$HH 240 H9wZLL$8H)I)ItMLL$8L$Hl$@Hl$LD$HLD$HT$HL$ HD$(HT$XHL$`HD$hH0U 244 245 bytes.TrimSpace 246 $runtime.panicslice 247 0runtime.morestack_noctxtp`"".~r2@type.[]uint8"".indent0type.int"".srctype.[]uint8`_`V(-E 250 r>Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbjprebuilts/go/darwin-x86/src/internal/format/format.go"".Parse.func2eH%H;aH0HD$P1H\$XH\$`H\$hH}1HHD$PHl$@LD$HHHH9wmLL$8H)I)ItMHHL9wELL$8L$H\$@H\$LD$HLD$HT$HL$ HD$(HT$XHL$`HD$hH0/ 256 257 258 bytes.TrimSpace 259 $runtime.panicslice 260 $runtime.panicslice 261 0runtime.morestack_noctxtp`"".autotmp_0073type.int"".~r2@type.[]uint8"".indent0type.int"".srctype.[]uint8`_`'(- 264 3EOTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbjprebuilts/go/darwin-x86/src/internal/format/format.go"".initeH%H;avMtu 269 $"".initdone<"".initdoneR 270 "runtime.throwinitb"".initdonen 271 bytes.initx 272 go/ast.init 273 go/parser.init 274 go/printer.init 275 go/token.init 276 strings.init"".initdone 277 0runtime.morestack_noctxtppp 278 (HTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbjprebuilts/go/darwin-x86/src/internal/format/format.goDgo.string.hdr."expected 'package'" <go.string."expected 'package'"<go.string."expected 'package'"0&expected 'package'4go.string.hdr."package p;" 279 ,go.string."package p;",go.string."package p;" package p;Hgo.string.hdr."expected declaration" @go.string."expected declaration"@go.string."expected declaration"0*expected declarationJgo.string.hdr."package p; func _() {" Bgo.string."package p; func _() {"Bgo.string."package p; func _() {"0,package p; func _() {Tgclocalsc10497e5baca687181c840f1eb9f979a@@@ Tgclocals028b3b085201053c62c417bb4f38aaf0@@ 0>go.itab.*bytes.Buffer.io.WriterTgclocals4023d37a46d650dea4f91439d0b33791XX Tgclocalse84f6ab826dbab49fd7da72039d89664XX Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb0"".initdonetype.uint8"".Parsef"".Parse"".Formatf"".Format"".IsSpacef"".IsSpace""".Parse.func1f"".Parse.func1""".Parse.func2f"".Parse.func2"".initf"".init"runtime.gcbits.01.go.string.hdr."[]uint8" &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8 []uint8type.[]uint8Tgo.string.hdr."func([]uint8, int) []uint8" Lgo.string."func([]uint8, int) []uint8"Lgo.string."func([]uint8, int) []uint8"@6func([]uint8, int) []uint8>type.func([]uint8, int) []uint89k30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8, int) []uint8"pPgo.weak.type.*func([]uint8, int) []uint8"runtime.zerovalue>type.func([]uint8, int) []uint8>type.func([]uint8, int) []uint8type.[]uint8type.inttype.[]uint8go.typelink.func([]uint8, int) []uint8 func([]uint8, int) []uint8>type.func([]uint8, int) []uint8.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"*go.string.hdr."bytes" "go.string."bytes""go.string."bytes"bytes(go.importpath.bytes. "go.string."bytes",go.string.hdr."go/ast" $go.string."go/ast"$go.string."go/ast"go/ast*go.importpath.go/ast. $go.string."go/ast"0go.string.hdr."go/token" (go.string."go/token"(go.string."go/token" go/token.go.importpath.go/token. (go.string."go/token".go.string.hdr."strings" &go.string."strings"&go.string."strings"strings,go.importpath.strings. &go.string."strings"2go.string.hdr."go/parser" *go.string."go/parser"*go.string."go/parser" go/parser0go.importpath.go/parser. *go.string."go/parser"4go.string.hdr."go/printer" 290 ,go.string."go/printer",go.string."go/printer" go/printer2go.importpath.go/printer. 291 ,go.string."go/printer""runtime.zerovaluego13ld