changeset 16408:3f9ec3220077

Truffle: added API for typed objects.
author Christian Humer <christian.humer@gmail.com>
date Fri, 04 Jul 2014 18:56:54 +0200
parents 9575add7149c
children 51b74b041bb7
files CHANGELOG.md graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TypedObject.java
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG.md	Fri Jul 04 18:56:54 2014 +0200
+++ b/CHANGELOG.md	Fri Jul 04 18:56:54 2014 +0200
@@ -13,6 +13,7 @@
 * New flag -G:+TraceTruffleCompilationCallTree to print the tree of inlined calls before compilation.
 * `truffle.jar`: strip out build-time only dependency into a seperated JAR file (`truffle-dsl-processor.jar`)
 * New flag -G:+TraceTruffleCompilationAST to print the AST before compilation.
+* New experimental TypedObject interface added.
 * ...
 
 ## Version 0.3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TypedObject.java	Fri Jul 04 18:56:54 2014 +0200
@@ -0,0 +1,7 @@
+package com.oracle.truffle.api;
+
+public interface TypedObject {
+
+    Object getTypeIdentifier();
+
+}