# HG changeset patch # User Christian Humer # Date 1404493014 -7200 # Node ID 3f9ec322007719621e398f5cefa92af93452180d # Parent 9575add7149c931d62cfe1fff733f575c51f3995 Truffle: added API for typed objects. diff -r 9575add7149c -r 3f9ec3220077 CHANGELOG.md --- 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 diff -r 9575add7149c -r 3f9ec3220077 graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TypedObject.java --- /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(); + +}