starting work on .query(..)...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2018-11-26 22:23:19 +03:00
parent 12d2815345
commit 5437d8f0de

View File

@ -412,6 +412,19 @@ var TagsPrototype = {
// ['or', 'a', 'b'],
// ['not', 'z']])
query: function(){
// XXX each of the arguments can be:
// - tag -> resolves to list of values
// - query -> resolves to list of values
// - list of values
var ns = {
and: function(...e){
},
or: function(...e){
},
not: function(...e){
},
}
// XXX
},