blob: 81f430551f4895a2505f7077917d8496884f0f0a [file] [log] [blame]
swissChili7babd922021-12-02 22:46:48 -08001#pragma once
2
3#include "Token.h"
4#include "VarContext.h"
5
6struct MatchResult {
7 bool success;
8 VarContext context;
9};
10
11MatchResult match(QList<Token> data, QList<Token> pattern, VarContext context);