(name string, index int)
| 1257 | } |
| 1258 | |
| 1259 | func (c *compiler) beginScope(name string, index int) { |
| 1260 | c.scopes = append(c.scopes, scope{name, index}) |
| 1261 | } |
| 1262 | |
| 1263 | func (c *compiler) endScope() { |
| 1264 | c.scopes = c.scopes[:len(c.scopes)-1] |
no outgoing calls
no test coverage detected