Allow OR syntax on variables
See original GitHub issueExample, suppose I have these variables:
$cudf=repo:rapidsai/cudf
$cuio_issues = is:issue is:open label:cuIO
$libcudf_issues = is:issue is:open label:libcudf -label:cuIO
It would be nice if this worked (it doesn’t appear to):
$cudf $cuio_issues OR $cudf $libcudf_issues
Instead I have to write it all out (this works):
$cudf is:issue is:open label:cuIO OR $cudf is:issue is:open label:libcudf -label:cuIO
It would also be nice if this worked:
$query1 = $cudf $cudf_issues
$query2 = $cudf $cuio_issues
$query1 OR $query2
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
5. Syntax of Variable Declaration
This declares a variable, declares its data type, and reserves memory for it. It says nothing about what value is put in memory....
Read more >Syntax of Variable Declaration
This declares a variable, declares its data type, and reserves memory for it. It says nothing about what value is put in memory....
Read more >Variables in Java - Explore its Types with Syntax and ...
Java Variables are the storage unit that contains the value during a program execution. Learn about types of variables in Java with the...
Read more >User defined variable syntax
User-defined variable definition syntax consists of the VARIBLE_NAME and VALUE keywords. ... In the syntax descriptions, the underlined portion of the keyword ...
Read more >SQL Variables: Basics and usage
In this article, we will learn the notions and usage details of the SQL variable. In SQL Server, local variables are used to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Cool. This is where parsing happens: https://github.com/microsoft/vscode-github-issue-notebooks/blob/8cfb2ad5048807ba11d27348f4639a9d99d6fc91/src/parser/parser.ts#L357, this is where tests are https://github.com/microsoft/vscode-github-issue-notebooks/blob/8cfb2ad5048807ba11d27348f4639a9d99d6fc91/src/test-unit/parser.test.ts#L11. Run them with
npm run unit-test
@jrieken I’ve made the PR #59.