in lib/src/parser.dart [59:63]
Node _or() { var left = _and(); if (!_scanner.scan(TokenType.or)) return left; return OrNode(left, _or()); }