comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/SyntaxTagTrap.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 50d79ad439f1
children d6d9631eb057
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
27 import com.oracle.truffle.api.frame.*; 27 import com.oracle.truffle.api.frame.*;
28 import com.oracle.truffle.api.nodes.*; 28 import com.oracle.truffle.api.nodes.*;
29 29
30 /** 30 /**
31 * A trap that can be set to interrupt execution at probed nodes carrying a specific tag. 31 * A trap that can be set to interrupt execution at probed nodes carrying a specific tag.
32 *
33 * @see Probe
32 */ 34 */
33 public abstract class SyntaxTagTrap { 35 public abstract class SyntaxTagTrap {
34 36
35 private final SyntaxTag tag; 37 private final SyntaxTag tag;
36 38