Commit 103c9db7 authored by Robert Griesemer's avatar Robert Griesemer

spec: clarifications around exports, uniqueness of identifiers

- Define what it means for two identifiers to be unique.

- The current spec is incorrect about exported
identifiers: for instance, it excluded fields
of non-exported types of exported variables
from being exported. It is easier to leave
the detailed specification away and let the
rest of the spec govern access of exported
identifiers.

- The current spec is incorrect about qualified
identifiers: It simply required that an identifier
be exported to be valid in a qualified identifier.
However, qualified identifiers can only access
exported identifiers declared in the package
block of the imported package.

Fixes #1551.

R=r, rsc, iant, ken
CC=golang-dev
https://golang.org/cl/5711043
parent 3c3c5f38
...@@ -684,7 +684,8 @@ The method set of the corresponding pointer type <code>*T</code> ...@@ -684,7 +684,8 @@ The method set of the corresponding pointer type <code>*T</code>
is the set of all methods with receiver <code>*T</code> or <code>T</code> is the set of all methods with receiver <code>*T</code> or <code>T</code>
(that is, it also contains the method set of <code>T</code>). (that is, it also contains the method set of <code>T</code>).
Any other type has an empty method set. Any other type has an empty method set.
In a method set, each method must have a unique <a href="#MethodName">method name</a>. In a method set, each method must have a
<a href="#Uniqueness_of_identifiers">unique</a> <a href="#MethodName">method name</a>.
</p> </p>
<p> <p>
...@@ -895,7 +896,7 @@ A struct is a sequence of named elements, called fields, each of which has a ...@@ -895,7 +896,7 @@ A struct is a sequence of named elements, called fields, each of which has a
name and a type. Field names may be specified explicitly (IdentifierList) or name and a type. Field names may be specified explicitly (IdentifierList) or
implicitly (AnonymousField). implicitly (AnonymousField).
Within a struct, non-<a href="#Blank_identifier">blank</a> field names must Within a struct, non-<a href="#Blank_identifier">blank</a> field names must
be unique. be <a href="#Uniqueness_of_identifiers">unique</a>.
</p> </p>
<pre class="ebnf"> <pre class="ebnf">
...@@ -1074,7 +1075,8 @@ InterfaceTypeName = TypeName . ...@@ -1074,7 +1075,8 @@ InterfaceTypeName = TypeName .
</pre> </pre>
<p> <p>
As with all method sets, in an interface type, each method must have a unique name. As with all method sets, in an interface type, each method must have a
<a href="#Uniqueness_of_identifiers">unique</a> name.
</p> </p>
<pre> <pre>
...@@ -1538,10 +1540,19 @@ the body of any nested function. ...@@ -1538,10 +1540,19 @@ the body of any nested function.
</p> </p>
<h3 id="Blank_identifier">Blank identifier</h3>
<p>
The <i>blank identifier</i>, represented by the underscore character <code>_</code>, may be used in a declaration like
any other identifier but the declaration does not introduce a new binding.
</p>
<h3 id="Predeclared_identifiers">Predeclared identifiers</h3> <h3 id="Predeclared_identifiers">Predeclared identifiers</h3>
<p> <p>
The following identifiers are implicitly declared in the universe block: The following identifiers are implicitly declared in the
<a href="#Blocks">universe block</a>:
</p> </p>
<pre class="grammar"> <pre class="grammar">
Types: Types:
...@@ -1564,28 +1575,31 @@ Functions: ...@@ -1564,28 +1575,31 @@ Functions:
<h3 id="Exported_identifiers">Exported identifiers</h3> <h3 id="Exported_identifiers">Exported identifiers</h3>
<p> <p>
An identifier may be <i>exported</i> to permit access to it from another package An identifier may be <i>exported</i> to permit access to it from another package.
using a <a href="#Qualified_identifiers">qualified identifier</a>. An identifier An identifier is exported if both:
is exported if both:
</p> </p>
<ol> <ol>
<li>the first character of the identifier's name is a Unicode upper case letter (Unicode class "Lu"); and</li> <li>the first character of the identifier's name is a Unicode upper case
<li>the identifier is declared in the <a href="#Blocks">package block</a> or denotes a field or method of a type letter (Unicode class "Lu"); and</li>
declared in that block.</li> <li>the identifier is declared in the <a href="#Blocks">package block</a>
or it is a <a href="#Struct_types">field name</a> or
<a href="#MethodName">method name</a>.</li>
</ol> </ol>
<p> <p>
All other identifiers are not exported. All other identifiers are not exported.
</p> </p>
<h3 id="Blank_identifier">Blank identifier</h3> <h3 id="Uniqueness_of_identifiers">Uniqueness of identifiers</h3>
<p> <p>
The <i>blank identifier</i>, represented by the underscore character <code>_</code>, may be used in a declaration like Given a set of identifiers, an identifier is called <i>unique</i> if it is
any other identifier but the declaration does not introduce a new binding. <i>different</i> from every other in the set.
Two identifiers are different if they are spelled differently, or if they
appear in different <a href="#Packages">packages</a> and are not
<a href="Exported_identifiers">exported</a>. Otherwise, they are the same.
</p> </p>
<h3 id="Constant_declarations">Constant declarations</h3> <h3 id="Constant_declarations">Constant declarations</h3>
<p> <p>
...@@ -1942,7 +1956,7 @@ is visible only within selectors for that type. ...@@ -1942,7 +1956,7 @@ is visible only within selectors for that type.
<p> <p>
For a base type, the non-<a href="#Blank_identifier">blank</a> names of For a base type, the non-<a href="#Blank_identifier">blank</a> names of
methods bound to it must be unique. methods bound to it must be <a href="#Uniqueness_of_identifiers">unique</a>.
If the base type is a <a href="#Struct_types">struct type</a>, If the base type is a <a href="#Struct_types">struct type</a>,
the non-blank method and field names must be distinct. the non-blank method and field names must be distinct.
</p> </p>
...@@ -2022,12 +2036,12 @@ QualifiedIdent = [ PackageName "." ] identifier . ...@@ -2022,12 +2036,12 @@ QualifiedIdent = [ PackageName "." ] identifier .
<p> <p>
A qualified identifier accesses an identifier in a different package, which A qualified identifier accesses an identifier in a different package, which
must be <a href="#Import_declarations">imported</a>. must be <a href="#Import_declarations">imported</a>.
The identifier must be <a href="#Exported_identifiers">exported</a> by that The identifier must be <a href="#Exported_identifiers">exported</a> and
package, which means that it must begin with a Unicode upper case letter. declared in the <a href="#Blocks">package block</a> of that package.
</p> </p>
<pre> <pre>
math.Sin math.Sin // denotes the Sin function in package math
</pre> </pre>
<h3 id="Composite_literals">Composite literals</h3> <h3 id="Composite_literals">Composite literals</h3>
...@@ -2332,8 +2346,8 @@ where <code>T</code> is not an interface type, ...@@ -2332,8 +2346,8 @@ where <code>T</code> is not an interface type,
<code>x.f</code> denotes the field or method at the shallowest depth <code>x.f</code> denotes the field or method at the shallowest depth
in <code>T</code> where there in <code>T</code> where there
is such an <code>f</code>. is such an <code>f</code>.
If there is not exactly one <code>f</code> with shallowest depth, the selector If there is not exactly <a href="#Uniqueness_of_identifiers">one <code>f</code></a>
expression is illegal. with shallowest depth, the selector expression is illegal.
</li> </li>
<li> <li>
For a variable <code>x</code> of type <code>I</code> For a variable <code>x</code> of type <code>I</code>
...@@ -5070,11 +5084,12 @@ An implementation may require that all source files for a package inhabit the sa ...@@ -5070,11 +5084,12 @@ An implementation may require that all source files for a package inhabit the sa
<h3 id="Import_declarations">Import declarations</h3> <h3 id="Import_declarations">Import declarations</h3>
<p> <p>
An import declaration states that the source file containing the An import declaration states that the source file containing the declaration
declaration uses identifiers depends on functionality of the <i>imported</i> package
<a href="#Exported_identifiers">exported</a> by the <i>imported</i> (<a href="#Program_initialization_and_execution">§Program initialization and execution</a>)
package and enables access to them. The import names an and it enables access to <a href="#Exported_identifiers">exported</a> identifiers
identifier (PackageName) to be used for access and an ImportPath of that package.
The import names an identifier (PackageName) to be used for access and an ImportPath
that specifies the package to be imported. that specifies the package to be imported.
</p> </p>
...@@ -5086,13 +5101,14 @@ ImportPath = string_lit . ...@@ -5086,13 +5101,14 @@ ImportPath = string_lit .
<p> <p>
The PackageName is used in <a href="#Qualified_identifiers">qualified identifiers</a> The PackageName is used in <a href="#Qualified_identifiers">qualified identifiers</a>
to access the exported identifiers of the package within the importing source file. to access exported identifiers of the package within the importing source file.
It is declared in the <a href="#Blocks">file block</a>. It is declared in the <a href="#Blocks">file block</a>.
If the PackageName is omitted, it defaults to the identifier specified in the If the PackageName is omitted, it defaults to the identifier specified in the
<a href="#Package_clause">package clause</a> of the imported package. <a href="#Package_clause">package clause</a> of the imported package.
If an explicit period (<code>.</code>) appears instead of a name, all the If an explicit period (<code>.</code>) appears instead of a name, all the
package's exported identifiers will be declared in the current file's package's exported identifiers declared in that package's
file block and can be accessed without a qualifier. <a href="#Blocks">package block</a> will be declared in the importing source
file's file block and can be accessed without a qualifier.
</p> </p>
<p> <p>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment