Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/chibash/stone
/ operator
Method
operator
src/stone/ast/BinaryExpr.java:7–9 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
5
public
BinaryExpr(List<ASTree> c) { super(c); }
6
public
ASTree left() {
return
child(0); }
7
public
String operator() {
8
return
((ASTLeaf)child(1)).token().getText();
9
}
10
public
ASTree right() {
return
child(2); }
11
}
Callers
6
lookup
Method · 0.80
eval
Method · 0.80
typeCheck
Method · 0.80
translate
Method · 0.80
isExprStmnt
Method · 0.80
compile
Method · 0.80
Calls
3
getText
Method · 0.45
token
Method · 0.45
child
Method · 0.45
Tested by
no test coverage detected