MCPcopy
hub / github.com/marimo-team/marimo / FunctionArg

Class FunctionArg

frontend/src/utils/python-poet/poet.ts:139–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139export class FunctionArg implements PythonCode {
140 public name: string;
141 public value: string | PythonCode;
142
143 constructor(name: string, value: string | PythonCode) {
144 this.name = name;
145 this.value = value;
146 }
147
148 toCode(): string {
149 return `${this.name}=${asString(this.value)}`;
150 }
151}
152
153export class FunctionCall implements PythonCode {
154 private args: PythonCode[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…