| OLD | NEW |
| 1 \documentclass{article} | 1 \documentclass{article} |
| 2 \usepackage{epsfig} | 2 \usepackage{epsfig} |
| 3 \usepackage{dart} | 3 \usepackage{dart} |
| 4 \usepackage{bnf} | 4 \usepackage{bnf} |
| 5 \usepackage{hyperref} | 5 \usepackage{hyperref} |
| 6 \newcommand{\code}[1]{{\sf #1}} | 6 \newcommand{\code}[1]{{\sf #1}} |
| 7 \title{Dart Programming Language Specification \\ | 7 \title{Dart Programming Language Specification \\ |
| 8 {\large Version 1.01}} | 8 {\large Version 1.1}} |
| 9 \author{The Dart Team} | 9 \author{The Dart Team} |
| 10 \begin{document} | 10 \begin{document} |
| 11 \maketitle | 11 \maketitle |
| 12 | 12 |
| 13 \tableofcontents | 13 \tableofcontents |
| 14 | 14 |
| 15 | 15 |
| 16 \newpage | 16 \newpage |
| 17 | 17 |
| 18 \pagestyle{myheadings} | 18 \pagestyle{myheadings} |
| (...skipping 5805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5824 \item The names of compile time constant variables never use lower case letters.
If they consist of multiple words, those words are separated by underscores. Ex
amples: PI, I\_AM\_A\_CONSTANT. | 5824 \item The names of compile time constant variables never use lower case letters.
If they consist of multiple words, those words are separated by underscores. Ex
amples: PI, I\_AM\_A\_CONSTANT. |
| 5825 \item The names of functions (including getters, setters, methods and local or l
ibrary functions) and non-constant variables begin with a lowercase letter. If t
he name consists of multiple words, each word (except the first) begins with an
uppercase letter. No other uppercase letters are used. Examples: camlCase, dar
t4TheWorld | 5825 \item The names of functions (including getters, setters, methods and local or l
ibrary functions) and non-constant variables begin with a lowercase letter. If t
he name consists of multiple words, each word (except the first) begins with an
uppercase letter. No other uppercase letters are used. Examples: camlCase, dar
t4TheWorld |
| 5826 \item The names of types (including classes and type aliases) begin with an uppe
r case letter. If the name consists of multiple words, each word begins with
an uppercase letter. No other uppercase letters are used. Examples: CamlCase, D
art4TheWorld. | 5826 \item The names of types (including classes and type aliases) begin with an uppe
r case letter. If the name consists of multiple words, each word begins with
an uppercase letter. No other uppercase letters are used. Examples: CamlCase, D
art4TheWorld. |
| 5827 \item The names of type variables are short (preferably single letter). Examples
: T, S, K, V , E. | 5827 \item The names of type variables are short (preferably single letter). Examples
: T, S, K, V , E. |
| 5828 \item The names of libraries or library prefixes never use upper case letters. I
f they consist of multiple words, those words are separated by underscores. Exam
ple: my\_favorite\_library. | 5828 \item The names of libraries or library prefixes never use upper case letters. I
f they consist of multiple words, those words are separated by underscores. Exam
ple: my\_favorite\_library. |
| 5829 \end{itemize} | 5829 \end{itemize} |
| 5830 } | 5830 } |
| 5831 | 5831 |
| 5832 | 5832 |
| 5833 \end{document} | 5833 \end{document} |
| OLD | NEW |