Skip to content
This repository has been archived by the owner on Nov 22, 2018. It is now read-only.

Commit

Permalink
Enable alternatively using = instead of == for equality opeartion. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Mercl committed Jul 29, 2016
1 parent 3ae4fab commit c81467d
Show file tree
Hide file tree
Showing 8 changed files with 1,047 additions and 1,010 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cpu: clean
go tool pprof -lines *.test cpu.out

edit:
gvim -p Makefile *.l *.y *.go
@ 1>/dev/null 2>/dev/null gvim -p Makefile *.l *.y *.go testdata.ql testdata.log

editor: ql.y scanner.go parser.go coerce.go
gofmt -s -l -w *.go
Expand Down
7 changes: 6 additions & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
//
// Change list
//
// 2016-07-29: Release v1.0.6 enables alternatively using = instead of == for
// equality oparation.
//
// https://github.com/cznic/ql/issues/131
//
// 2016-07-11: Release v1.0.5 undoes vendoring of lldb. QL now uses stable lldb
// (github.com/cznic/lldb).
//
Expand Down Expand Up @@ -308,7 +313,7 @@
// andnot = "&^" .
// lsh = "<<" .
// le = "<=" .
// eq = "==" .
// eq = "==" | "=" .
// ge = ">=" .
// neq = "!=" .
// oror = "||" .
Expand Down
Loading

0 comments on commit c81467d

Please sign in to comment.