mirror of
https://github.com/golang/go
synced 2024-11-22 00:14:42 -07:00
Updated spec:
- clarified constants and constant expressions - clarified type of array composite literals (fixed vs open arrays) - clarified type of map composite literals (need to use '&' to get a map pointer) - added proposal for "if-else" (TBD) - added TODO w/ respect to "x, ok = <-ch" (and for arrays) R=r DELTA=51 (35 added, 0 deleted, 16 changed) OCL=15573 CL=15575
This commit is contained in:
parent
0e81bba1fe
commit
b90b213e61
@ -4,7 +4,7 @@ The Go Programming Language Specification (DRAFT)
|
|||||||
Robert Griesemer, Rob Pike, Ken Thompson
|
Robert Griesemer, Rob Pike, Ken Thompson
|
||||||
|
|
||||||
----
|
----
|
||||||
(September 17, 2008)
|
(September 19, 2008)
|
||||||
|
|
||||||
|
|
||||||
This document is a semi-formal specification of the Go systems
|
This document is a semi-formal specification of the Go systems
|
||||||
@ -20,7 +20,7 @@ Any part may change substantially as design progresses.
|
|||||||
Open issues according to gri:
|
Open issues according to gri:
|
||||||
[ ] clarification on interface types, rules
|
[ ] clarification on interface types, rules
|
||||||
[ ] methods for all types
|
[ ] methods for all types
|
||||||
[ ] remove "any"
|
[x] remove "any"
|
||||||
[ ] convert should not be used for composite literals anymore,
|
[ ] convert should not be used for composite literals anymore,
|
||||||
in fact, convert() should go away
|
in fact, convert() should go away
|
||||||
[ ] syntax for var args
|
[ ] syntax for var args
|
||||||
@ -34,12 +34,12 @@ Open issues according to gri:
|
|||||||
[ ] new(arraytype, n1, n2): spec only talks about length, not capacity
|
[ ] new(arraytype, n1, n2): spec only talks about length, not capacity
|
||||||
(should only use new(arraytype, n) - this will allow later
|
(should only use new(arraytype, n) - this will allow later
|
||||||
extension to multi-dim arrays w/o breaking the language)
|
extension to multi-dim arrays w/o breaking the language)
|
||||||
[ ] & needed to get a function pointer from a function?
|
[x] & needed to get a function pointer from a function? (NO - there is the "func" keyword - 9/19/08)
|
||||||
[ ] comparison operators: can we compare interfaces?
|
[ ] comparison operators: can we compare interfaces?
|
||||||
[ ] optional semicolons: too complicated and unclear
|
[ ] optional semicolons: too complicated and unclear
|
||||||
[ ] like to have assert() in the language, w/ option to disable code gen for it
|
[ ] like to have assert() in the language, w/ option to disable code gen for it
|
||||||
[ ] composite types should uniformly create an instance instead of a pointer
|
[ ] composite types should uniformly create an instance instead of a pointer
|
||||||
[ ] func literal like a composite type - should probably require the '&' to get
|
[x] func literal like a composite type - should probably require the '&' to get
|
||||||
address
|
address
|
||||||
[ ] meaning of nil
|
[ ] meaning of nil
|
||||||
[ ] clarify slice rules
|
[ ] clarify slice rules
|
||||||
@ -52,8 +52,12 @@ Open issues according to gri:
|
|||||||
[ ] iant suggests to use abstract/precise int for len(), cap() - good idea
|
[ ] iant suggests to use abstract/precise int for len(), cap() - good idea
|
||||||
(issue: what happens in len() + const - what is the type?)
|
(issue: what happens in len() + const - what is the type?)
|
||||||
[ ] Do composite literals create a new literal each time (gri thinks yes)
|
[ ] Do composite literals create a new literal each time (gri thinks yes)
|
||||||
[ ] should binary <- be at lowest precedence level? when is a send/receive non-blocking?
|
[x] should binary <- be at lowest precedence level? when is a send/receive non-blocking? (NO - 9/19/08)
|
||||||
[ ] consider syntactic notation for composite literals to make them parseable w/o type information
|
[ ] consider syntactic notation for composite literals to make them parseable w/o type information
|
||||||
|
|
||||||
|
|
||||||
|
Decisions in need of integration into the doc:
|
||||||
|
[ ] pair assignment is required to get map, and receive ok.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
Contents
|
Contents
|
||||||
@ -96,6 +100,7 @@ Contents
|
|||||||
|
|
||||||
Expressions
|
Expressions
|
||||||
Operands
|
Operands
|
||||||
|
Constants
|
||||||
Qualified identifiers
|
Qualified identifiers
|
||||||
Iota
|
Iota
|
||||||
Composite Literals
|
Composite Literals
|
||||||
@ -114,6 +119,8 @@ Contents
|
|||||||
Logical operators
|
Logical operators
|
||||||
Address operators
|
Address operators
|
||||||
Communication operators
|
Communication operators
|
||||||
|
|
||||||
|
Constant expressions
|
||||||
|
|
||||||
Statements
|
Statements
|
||||||
Label declarations
|
Label declarations
|
||||||
@ -503,11 +510,11 @@ The following identifiers are predeclared:
|
|||||||
|
|
||||||
byte, ushort, uint, ulong, short, int, long, float, double, ptrint
|
byte, ushort, uint, ulong, short, int, long, float, double, ptrint
|
||||||
|
|
||||||
- the predeclared constants
|
- the predeclared constants:
|
||||||
|
|
||||||
true, false, iota, nil
|
true, false, iota, nil
|
||||||
|
|
||||||
- the predeclared functions (note: this list is likely to change)
|
- the predeclared functions (note: this list is likely to change):
|
||||||
|
|
||||||
cap(), convert(), len(), new(), panic(), print(), typeof(), ...
|
cap(), convert(), len(), new(), panic(), print(), typeof(), ...
|
||||||
|
|
||||||
@ -521,7 +528,8 @@ are unknown in general).
|
|||||||
Const declarations
|
Const declarations
|
||||||
----
|
----
|
||||||
|
|
||||||
A constant declaration gives a name to the value of a constant expression.
|
A constant declaration gives a name to the value of a constant expression
|
||||||
|
(§Constant expressions).
|
||||||
|
|
||||||
ConstDecl = "const" ( ConstSpec | "(" ConstSpecList [ ";" ] ")" ).
|
ConstDecl = "const" ( ConstSpec | "(" ConstSpecList [ ";" ] ")" ).
|
||||||
ConstSpec = identifier [ Type ] "=" Expression .
|
ConstSpec = identifier [ Type ] "=" Expression .
|
||||||
@ -1196,6 +1204,15 @@ Operands denote the elementary values in an expression.
|
|||||||
BasicLit = int_lit | float_lit | char_lit | string_lit .
|
BasicLit = int_lit | float_lit | char_lit | string_lit .
|
||||||
|
|
||||||
|
|
||||||
|
Constants
|
||||||
|
----
|
||||||
|
|
||||||
|
An operand is called ``constant'' if it is a literal of a basic type
|
||||||
|
(including the predeclared constants "true" and "false"), the predeclared
|
||||||
|
constant "nil", or a parenthesized constant expression (§Constant expressions).
|
||||||
|
Constants have values that are known at compile-time.
|
||||||
|
|
||||||
|
|
||||||
Qualified identifiers
|
Qualified identifiers
|
||||||
----
|
----
|
||||||
|
|
||||||
@ -1258,6 +1275,8 @@ or a list of expression pairs for map literals.
|
|||||||
If LiteralType is a TypeName, the denoted type must be an array, map, or
|
If LiteralType is a TypeName, the denoted type must be an array, map, or
|
||||||
structure. The types of the expressions must match the respective key, element,
|
structure. The types of the expressions must match the respective key, element,
|
||||||
and field types of the literal type; there is no automatic type conversion.
|
and field types of the literal type; there is no automatic type conversion.
|
||||||
|
LiteralType is the type of the literal: To get a pointer to the literal, the
|
||||||
|
address operator "&" must be used.
|
||||||
|
|
||||||
Given
|
Given
|
||||||
|
|
||||||
@ -1268,20 +1287,22 @@ we can write
|
|||||||
|
|
||||||
pi := Num{Rat{22, 7}, 3.14159, "pi"};
|
pi := Num{Rat{22, 7}, 3.14159, "pi"};
|
||||||
|
|
||||||
For array literals, if the length is present the constructed array has that many
|
|
||||||
elements; trailing elements are given the approprate zero value for that type.
|
The length of a fixed array literal is the length specified in LiteralType.
|
||||||
If it is absent, the length of the array is the number of elements. It is an error
|
If fewer elements are specified in the composite literal, the missing elements
|
||||||
if the specified length is less than the number of elements in the expression list.
|
are set to the approprate zero value for the array element type. It is an error
|
||||||
In either case, the length is known at compile type and thus the type of an
|
to provide more elements then specified in LiteralType.
|
||||||
array literal is always a fixed array type.
|
|
||||||
|
The length of an open array literal is the number of elements specified in the
|
||||||
|
composite literal.
|
||||||
|
|
||||||
primes := [6]int{2, 3, 5, 7, 9, 11};
|
primes := [6]int{2, 3, 5, 7, 9, 11};
|
||||||
weekdays := []string{"mon", "tue", "wed", "thu", "fri", "sat", "sun"};
|
weekdays := &[]string{"mon", "tue", "wed", "thu", "fri", "sat", "sun"};
|
||||||
|
|
||||||
Map literals are similar except the elements of the expression list are
|
Map literals are similar except the elements of the expression list are
|
||||||
key-value pairs separated by a colon:
|
key-value pairs separated by a colon:
|
||||||
|
|
||||||
m := map[string]int{"good": 0, "bad": 1, "indifferent": 7};
|
m := &map[string]int{"good": 0, "bad": 1, "indifferent": 7};
|
||||||
|
|
||||||
TODO: Consider adding helper syntax for nested composites
|
TODO: Consider adding helper syntax for nested composites
|
||||||
(avoids repeating types but complicates the spec needlessly.)
|
(avoids repeating types but complicates the spec needlessly.)
|
||||||
@ -1714,6 +1735,20 @@ the receive operation becomes non-blocking, and the boolean variable
|
|||||||
to "false" otherwise.
|
to "false" otherwise.
|
||||||
|
|
||||||
|
|
||||||
|
Constant expressions
|
||||||
|
----
|
||||||
|
|
||||||
|
A constant expression is an expression whose operands are all constants
|
||||||
|
(§Constants). Additionally, the result of the predeclared functions
|
||||||
|
below (with appropriate arguments) is also constant:
|
||||||
|
|
||||||
|
len(a) if a is a fixed array
|
||||||
|
|
||||||
|
TODO: Complete this list as needed.
|
||||||
|
|
||||||
|
Constant expressions can be evaluated at compile time.
|
||||||
|
|
||||||
|
|
||||||
Statements
|
Statements
|
||||||
----
|
----
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user