tweaking...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2018-11-28 14:00:45 +03:00
parent ab43d7348b
commit 298d325012

View File

@ -129,6 +129,19 @@ var TagsPrototype = {
// }
__index: null,
// XXX each of the arguments can be:
// - tag -> resolves to list of values
// - query -> resolves to list of values
// - list of values
__query_ns: {
and: function(...args){
},
or: function(...args){
},
not: function(...args){
},
},
// Utils...
//
@ -423,19 +436,6 @@ 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
},