StatementTree.java revision 1590:1916a2c680d8
1219567Smarius/*
2130293Sscottl * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3130293Sscottl * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4130293Sscottl *
5130293Sscottl * This code is free software; you can redistribute it and/or modify it
6130293Sscottl * under the terms of the GNU General Public License version 2 only, as
7130293Sscottl * published by the Free Software Foundation.  Oracle designates this
8130293Sscottl * particular file as subject to the "Classpath" exception as provided
9130293Sscottl * by Oracle in the LICENSE file that accompanied this code.
10130293Sscottl *
11130293Sscottl * This code is distributed in the hope that it will be useful, but WITHOUT
12130293Sscottl * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13130293Sscottl * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14130293Sscottl * version 2 for more details (a copy is included in the LICENSE file that
15130293Sscottl * accompanied this code).
16130293Sscottl *
17130293Sscottl * You should have received a copy of the GNU General Public License version
18130293Sscottl * 2 along with this work; if not, write to the Free Software Foundation,
19130293Sscottl * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20130293Sscottl *
21130293Sscottl * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22130293Sscottl * or visit www.oracle.com if you need additional information or have any
23130293Sscottl * questions.
24130293Sscottl */
25130293Sscottl
26130293Sscottlpackage jdk.nashorn.api.tree;
27130293Sscottl
28130293Sscottl/**
29130293Sscottl * A tree node used as the base class for the different kinds of
30130293Sscottl * statements.
31130293Sscottl *
32130293Sscottl * @since 1.9
33130293Sscottl */
34130293Sscottlpublic interface StatementTree extends Tree {
35130293Sscottl}
36130293Sscottl