comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/StandardSyntaxTag.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 1cde96b96673
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
28 * A somewhat language-agnostic set of user-sensible syntactic categories, suitable for conventional 28 * A somewhat language-agnostic set of user-sensible syntactic categories, suitable for conventional
29 * imperative languages, and is being developed incrementally. 29 * imperative languages, and is being developed incrementally.
30 * <p> 30 * <p>
31 * The need for alternative sets of tags is likely to arise, perhaps for other families of languages 31 * The need for alternative sets of tags is likely to arise, perhaps for other families of languages
32 * (for example for mostly expression-oriented languages) or even for specific languages. 32 * (for example for mostly expression-oriented languages) or even for specific languages.
33 * <p>
34 * <strong>Disclaimer:</strong> experimental interface under development.
35 * 33 *
36 * @see Probe 34 * @see Probe
37 */ 35 */
38 public enum StandardSyntaxTag implements SyntaxTag { 36 public enum StandardSyntaxTag implements SyntaxTag {
39 37