Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/antlr/antlr4
/ arrayToString
Function
arrayToString
runtime/JavaScript/src/antlr4/utils/arrayToString.js:7–9 ·
view source on GitHub ↗
(a)
Source
from the content-addressed store, hash-verified
5
import
valueToString from
"./valueToString.js"
;
6
7
export
default
function
arrayToString(a) {
8
return
Array.isArray(a) ? (
"["
+ a.map(valueToString).join(
", "
) +
"]"
) :
"null"
;
9
}
Callers
7
getStateString
Method · 0.85
computeTargetState
Method · 0.85
getPredsForAmbigAlts
Method · 0.85
precedenceTransition
Method · 0.85
predTransition
Method · 0.85
toString
Method · 0.85
toString
Method · 0.85
Calls
2
join
Method · 0.45
map
Method · 0.45
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…