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

Class Variable

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

Source from the content-addressed store, hash-verified

25}
26
27export class Variable implements PythonCode {
28 name: string;
29 constructor(name: string) {
30 this.name = name;
31 }
32
33 toCode(): string {
34 return this.name;
35 }
36}
37
38interface LiteralOptions {
39 removeNull?: boolean;

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…