MCPcopy Create free account
hub / github.com/github/gh-aw / BuildStringLiteral

Function BuildStringLiteral

pkg/workflow/expression_builder.go:301–303  ·  view source on GitHub ↗

BuildStringLiteral creates a string literal node

(value string)

Source from the content-addressed store, hash-verified

299
300// BuildStringLiteral creates a string literal node
301func BuildStringLiteral(value string) *StringLiteralNode {
302 return &StringLiteralNode{Value: value}
303}
304
305// BuildBooleanLiteral creates a boolean literal node
306func BuildBooleanLiteral(value bool) *BooleanLiteralNode {

Calls

no outgoing calls