aboutsummaryrefslogtreecommitdiffstats
path: root/llvm_runtime.cpp
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2012-06-06 11:30:56 +0200
committerRoberto Raggi <roberto.raggi@nokia.com>2012-06-06 11:30:56 +0200
commitb1e62cc60749e3a55805df7ed493ec84587dc3bd (patch)
tree84769f14ce1c42dba8a7bd395a581de30ea97a9b /llvm_runtime.cpp
parentff76b6afa180d8e581ce2f0aeded4bcfc485ff09 (diff)
Generate LLVM code for member expressions
Diffstat (limited to 'llvm_runtime.cpp')
-rw-r--r--llvm_runtime.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm_runtime.cpp b/llvm_runtime.cpp
index e70240484b..2cb043ff59 100644
--- a/llvm_runtime.cpp
+++ b/llvm_runtime.cpp
@@ -170,4 +170,9 @@ void __qmljs_llvm_construct_activation_property(Context *context, Value *result,
__qmljs_construct_activation_property(context, result, name, args, argc);
}
+void __qmljs_llvm_get_property(Context *ctx, Value *result, Value *object, String *name)
+{
+ __qmljs_get_property(ctx, result, object, name);
+}
+
} // extern "C"