Last change
on this file since 81 was 67, checked in by Izuru Yakumo, 23 months ago |
Use vendored modules
Signed-off-by: Izuru Yakumo <yakumo.izuru@…>
|
File size:
342 bytes
|
Rev | Line | |
---|
[67] | 1 | package gcss
|
---|
| 2 |
|
---|
| 3 | // context represents a context of the parsing process.
|
---|
| 4 | type context struct {
|
---|
| 5 | vars map[string]*variable
|
---|
| 6 | mixins map[string]*mixinDeclaration
|
---|
| 7 | }
|
---|
| 8 |
|
---|
| 9 | // newContext creates and returns a context.
|
---|
| 10 | func newContext() *context {
|
---|
| 11 | return &context{
|
---|
| 12 | vars: make(map[string]*variable),
|
---|
| 13 | mixins: make(map[string]*mixinDeclaration),
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.