summaryrefslogtreecommitdiff
path: root/platform/node/src/node_expression.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/node/src/node_expression.hpp')
-rw-r--r--platform/node/src/node_expression.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/platform/node/src/node_expression.hpp b/platform/node/src/node_expression.hpp
index 8913bead1b..3797632236 100644
--- a/platform/node/src/node_expression.hpp
+++ b/platform/node/src/node_expression.hpp
@@ -2,7 +2,8 @@
#include <exception>
#include <memory>
-#include <mbgl/style/function/expression.hpp>
+#include <mbgl/style/conversion.hpp>
+#include <mbgl/style/expression/expression.hpp>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
@@ -10,6 +11,7 @@
#include <nan.h>
#pragma GCC diagnostic pop
+using namespace mbgl::style;
using namespace mbgl::style::expression;
namespace node_mbgl {
@@ -24,6 +26,7 @@ private:
{};
static void New(const Nan::FunctionCallbackInfo<v8::Value>&);
+ static void Parse(const Nan::FunctionCallbackInfo<v8::Value>&);
static void Evaluate(const Nan::FunctionCallbackInfo<v8::Value>&);
static void GetType(const Nan::FunctionCallbackInfo<v8::Value>&);
static void IsFeatureConstant(const Nan::FunctionCallbackInfo<v8::Value>&);