Rename: s/EvalSymbol/EvalVariable/

This commit is contained in:
Derek Parker
2015-06-12 14:04:14 -05:00
parent f627044f67
commit fe19f3f20c
8 changed files with 21 additions and 21 deletions

View File

@ -197,8 +197,8 @@ func parseG(thread *ThreadContext, gaddr uint64, deref bool) (*G, error) {
return g, nil
}
// Returns the value of the named symbol.
func (thread *ThreadContext) EvalSymbol(name string) (*Variable, error) {
// Returns the value of the named variable.
func (thread *ThreadContext) EvalVariable(name string) (*Variable, error) {
pc, err := thread.PC()
if err != nil {
return nil, err