# HG changeset patch # User Andreas Woess # Date 1416413479 -3600 # Node ID 2d2fcdbae37b8a8245e1f4fda3f527bcb2f156ff # Parent f0a8b72315c164006836e32564c66a65d252b5da SL: fix javadoc of new() builtin diff -r f0a8b72315c1 -r 2d2fcdbae37b graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/builtins/SLNewObjectBuiltin.java --- a/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/builtins/SLNewObjectBuiltin.java Wed Nov 19 17:00:12 2014 +0100 +++ b/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/builtins/SLNewObjectBuiltin.java Wed Nov 19 17:11:19 2014 +0100 @@ -22,20 +22,12 @@ */ package com.oracle.truffle.sl.builtins; -import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary; import com.oracle.truffle.api.dsl.*; import com.oracle.truffle.api.nodes.*; import com.oracle.truffle.api.source.*; -import com.oracle.truffle.sl.runtime.*; /** - * Builtin function to write a value to the {@link SLContext#getOutput() standard output}. The - * different specialization leverage the typed {@code println} methods available in Java, i.e., - * primitive values are printed without converting them to a {@link String} first. - *

- * Printing involves a lot of Java code, so we need to tell the optimizing system that it should not - * unconditionally inline everything reachable from the println() method. This is done via the - * {@link TruffleBoundary} annotations. + * Built-in function to create a new object. Objects in SL are simply made up of name/value pairs. */ @NodeInfo(shortName = "new") public abstract class SLNewObjectBuiltin extends SLBuiltinNode {