comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/SyntaxTag.java @ 19703:27fe86a6fb49

Truffle/Instrumentation: Javadoc
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Wed, 04 Mar 2015 16:28:05 -0800
parents e3c95cbbb50c
children
comparison
equal deleted inserted replaced
19697:c152a485d747 19703:27fe86a6fb49
1 /* 1 /*
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
32 * <p> 32 * <p>
33 * An untagged Truffle node should be understood as an artifact of the guest language implementation 33 * An untagged Truffle node should be understood as an artifact of the guest language implementation
34 * and should not be visible to guest language programmers. Nodes may also have more than one tag, 34 * and should not be visible to guest language programmers. Nodes may also have more than one tag,
35 * for example a variable assignment that is also a statement. Finally, the assignment of tags to 35 * for example a variable assignment that is also a statement. Finally, the assignment of tags to
36 * nodes could depending on the use-case of whatever tool is using them. 36 * nodes could depending on the use-case of whatever tool is using them.
37 * <p>
38 * <strong>Disclaimer:</strong> experimental interface under development.
39 * 37 *
40 * @see Probe 38 * @see Probe
41 * @see StandardSyntaxTag 39 * @see StandardSyntaxTag
42 */ 40 */
43 public interface SyntaxTag { 41 public interface SyntaxTag {