Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
f550cd67
Commit
f550cd67
authored
Jul 15, 2008
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- more infrastructure
SVN=127430
parent
a703c9a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
29 deletions
+28
-29
usr/gri/gosrc/compilation.go
usr/gri/gosrc/compilation.go
+25
-2
usr/gri/gosrc/globals.go
usr/gri/gosrc/globals.go
+1
-1
usr/gri/gosrc/go.go
usr/gri/gosrc/go.go
+2
-26
No files found.
usr/gri/gosrc/compilation.go
View file @
f550cd67
...
...
@@ -7,6 +7,7 @@ package Compilation
import
Globals
"globals"
import
Object
"object"
import
Type
"type"
import
Universe
"universe"
import
Package
"package"
import
Scanner
"scanner"
import
Parser
"parser"
...
...
@@ -16,7 +17,8 @@ export Compilation
type
Compilation
struct
{
src_name
string
;
pkg
*
Globals
.
Object
;
imports
*
Globals
.
List
;
// a list of *Globals.Package
imports
[
256
]
*
Package
.
Package
;
// TODO need open arrays
nimports
int
;
}
...
...
@@ -48,5 +50,26 @@ func (C *Compilation) Export() {
export
Compile
func
Compile
()
{
func
Compile
(
src_name
string
,
verbose
int
)
{
comp
:=
new
(
Compilation
);
comp
.
src_name
=
src_name
;
comp
.
pkg
=
nil
;
comp
.
nimports
=
0
;
src
,
ok
:=
sys
.
readfile
(
src_name
);
if
!
ok
{
print
"cannot open "
,
src_name
,
"
\n
"
return
;
}
Universe
.
Init
();
S
:=
new
(
Scanner
.
Scanner
);
S
.
Open
(
src_name
,
src
);
P
:=
new
(
Parser
.
Parser
);
P
.
Open
(
S
,
verbose
);
print
"parsing "
,
src_name
,
"
\n
"
;
P
.
ParseProgram
();
}
usr/gri/gosrc/globals.go
View file @
f550cd67
...
...
@@ -60,7 +60,7 @@ export Scope
type
Scope
struct
{
parent
*
Scope
;
entries
*
List
;
// entries *map[string] *Object; // doesn't work
yet
// entries *map[string] *Object; // doesn't work
properly
}
...
...
usr/gri/gosrc/go.go
View file @
f550cd67
...
...
@@ -5,12 +5,7 @@
package
main
import
Build
"build"
import
Globals
"globals"
import
Object
"object"
import
Type
"type"
import
Universe
"universe"
import
Scanner
"scanner"
import
Parser
"parser"
import
Compilation
"compilation"
func
PrintHelp
()
{
...
...
@@ -26,19 +21,6 @@ func PrintHelp() {
}
func
Compile
(
filename
,
src
string
,
verbose
int
)
{
Universe
.
Init
();
S
:=
new
(
Scanner
.
Scanner
);
S
.
Open
(
filename
,
src
);
P
:=
new
(
Parser
.
Parser
);
P
.
Open
(
S
,
verbose
);
P
.
ParseProgram
();
}
func
main
()
{
if
sys
.
argc
()
<=
1
{
PrintHelp
();
...
...
@@ -56,12 +38,6 @@ func main() {
continue
;
}
src
,
ok
:=
sys
.
readfile
(
sys
.
argv
(
i
));
if
ok
{
print
"parsing "
+
sys
.
argv
(
i
)
+
"
\n
"
;
Compile
(
sys
.
argv
(
i
),
src
,
verbose
);
}
else
{
print
"error: cannot read "
+
sys
.
argv
(
i
)
+
"
\n
"
;
}
Compilation
.
Compile
(
sys
.
argv
(
i
),
verbose
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment