1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-06 08:39:09 +02:00

Fixed access to a member property right after a function call (#368)

This commit is contained in:
Tim Voronov
2019-09-01 16:01:03 -04:00
committed by GitHub
parent 4dbfe85b97
commit 2a8135657d
12 changed files with 805 additions and 582 deletions

View File

@@ -184,7 +184,7 @@ func (r *Runner) runQueries(ctx context.Context, dir string) ([]Result, error) {
return results, nil
}
func (r *Runner) runQuery(ctx context.Context, c *compiler.FqlCompiler, name, script string) Result {
func (r *Runner) runQuery(ctx context.Context, c *compiler.Compiler, name, script string) Result {
start := time.Now()
p, err := c.Compile(script)