Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1299)

Delta Between Two Patch Sets: src/pkg/go/types/check.go

Issue 7013049: code review 7013049: go/types: moved from exp/types (Closed)
Left Patch Set: Created 11 years, 3 months ago
Right Patch Set: diff -r d7f56af8557e https://code.google.com/p/go Created 11 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/go/types/builtins.go ('k') | src/pkg/go/types/check_test.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // This file implements the Check function, which typechecks a package. 5 // This file implements the Check function, which typechecks a package.
6 6
7 package types 7 package types
8 8
9 import ( 9 import (
10 "fmt" 10 "fmt"
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 s = f.obj.Name 426 s = f.obj.Name
427 } 427 }
428 fmt.Println("---", s) 428 fmt.Println("---", s)
429 } 429 }
430 check.funcsig = f.sig 430 check.funcsig = f.sig
431 check.stmtList(f.body.List) 431 check.stmtList(f.body.List)
432 } 432 }
433 433
434 return 434 return
435 } 435 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b