-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProtoAstNodeTypeMgr.java
120 lines (95 loc) · 4.77 KB
/
ProtoAstNodeTypeMgr.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* M2J -- Modula-2 to Java Translator & Compiler
*
* Copyright (c) 2016 The Modula-2 Software Foundation
*
* Author & Maintainer: Benjamin Kowarsch <[email protected]>
*
* @synopsis
*
* M2J is a multi-dialect Modula-2 to Java translator and via-Java compiler.
* It supports the dialects described in the 3rd and 4th editions of Niklaus
* Wirth's book "Programming in Modula-2" (PIM) published by Springer Verlag,
* and an extended mode with select features from the revised language by
* B.Kowarsch and R.Sutcliffe "Modula-2 Revision 2010" (M2R10).
*
* In translator mode, M2J translates Modula-2 source to Java source files.
* In compiler mode, M2J compiles Modula-2 source via Java source files
* to Java .class files using the host system's resident Java compiler.
*
* @repository
*
* https://github.com/m2sf/m2j
*
* @file
*
* ProtoAstNodeTypeMgr.java
*
* Public interface for AST node type checking.
*
* @license
*
* M2J is free software: you can redistribute and/or modify it under the
* terms of the GNU Lesser General Public License (LGPL) either version 2.1
* or at your choice version 3 as published by the Free Software Foundation.
* However, you may not alter the copyright, author and license information.
*
* M2J is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. Read the license for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with m2j. If not, see <https://www.gnu.org/copyleft/lesser.html>.
*
* NB: Components in the domain part of email addresses are in reverse order.
*/
package org.m2sf.m2j;
interface ProtoAstNodeTypeMgr {
/* ---------------------------------------------------------------------------
* method isValid(nodeType)
* ---------------------------------------------------------------------------
* Returns true if nodeType is a valid node type, otherwise false.
* ------------------------------------------------------------------------ */
public boolean isValid(ProtoAstNodeType nodeType);
/* ---------------------------------------------------------------------------
* method isNonterminalType(nodeType)
* ---------------------------------------------------------------------------
* Returns true if nodeType is a nonterminal node type, otherwise false.
* ------------------------------------------------------------------------ */
public boolean isNonterminalType (ProtoAstNodeType nodeType);
/* ---------------------------------------------------------------------------
* method isTerminalType(nodeType)
* ---------------------------------------------------------------------------
* Returns true if nodeType is a terminal node type, otherwise false.
* ------------------------------------------------------------------------ */
public boolean isTerminalType (ProtoAstNodeType nodeType);
/* ---------------------------------------------------------------------------
* method isListType(nodeType)
* ---------------------------------------------------------------------------
* Returns true if nodeType is a list node type, otherwise false.
* ------------------------------------------------------------------------ */
public boolean isListType (ProtoAstNodeType nodeType);
/* ---------------------------------------------------------------------------
* method isLegalSubnodeCount(nodeType, subnodeCount)
* ---------------------------------------------------------------------------
* Returns true if the given subnode count is a legal value for the given
* node type, otherwise false.
* ------------------------------------------------------------------------ */
public boolean isLegalSubnodeCount
(ProtoAstNodeType nodeType, int SubnodeCount);
/* ---------------------------------------------------------------------------
* method isLegalSubnodeType(inNodeType, subnodeType, index)
* ---------------------------------------------------------------------------
* Returns true if the given subnode type is a legal node type for the given
* index in a node of the given subnode type, otherwise false.
* ------------------------------------------------------------------------ */
public boolean isLegalSubnodeType
(ProtoAstNodeType inNodeType, ProtoAstNodeType subnodeType, int index);
/* ---------------------------------------------------------------------------
* method nameForNodeType(nodeType)
* ---------------------------------------------------------------------------
* Returns a string with a human readable name for nodeType or null if the
* given node type is invalid.
* ------------------------------------------------------------------------ */
public String nameForNodeType (ProtoAstNodeType nodeType);
} /* ProtoAstNodeTypeMgr */
/* END OF FILE */