comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/SyntaxTagged.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) 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
27 import java.util.*; 27 import java.util.*;
28 28
29 /** 29 /**
30 * Information about a guest language program element in a Truffle AST that can be marked as 30 * Information about a guest language program element in a Truffle AST that can be marked as
31 * belonging to 0 or more {@linkplain SyntaxTag tags}. 31 * belonging to 0 or more {@linkplain SyntaxTag tags}.
32 * <p>
33 * <strong>Disclaimer:</strong> experimental interface under development.
34 */ 32 */
35 public interface SyntaxTagged { 33 public interface SyntaxTagged {
36 34
37 /** 35 /**
38 * Is this node tagged as belonging to a particular human-sensible category of language 36 * Is this node tagged as belonging to a particular human-sensible category of language