basic search tests

This commit is contained in:
zadam
2020-05-22 09:38:30 +02:00
parent cd48135394
commit ee053b9fdf
17 changed files with 202 additions and 44 deletions

View File

@@ -2,9 +2,12 @@
const NoteSet = require('../note_set');
const noteCache = require('../../note_cache/note_cache');
const Expression = require('./expression');
class AttributeExistsExp {
class AttributeExistsExp extends Expression {
constructor(attributeType, attributeName, prefixMatch) {
super();
this.attributeType = attributeType;
this.attributeName = attributeName;
this.prefixMatch = prefixMatch;