Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ExternalCodeNode

A node representing code block using R, Python, etc. When evaluated, the value will keep a dictionary of all exported variables and their values.

Hierarchy

  • Node
    • ExternalCodeNode

Index

Properties

antecedents

antecedents: Node[]

Returns all nodes that this node depends on.

errors

errors: Error[]

Collection of errors associated with this node. This is set, for example, when evaluating code represented by this node fails.

exportedVariables

exportedVariables: string[]

List of all exported variables by this code cell

hash

hash: string

Hash that identifies the node. When code or dependencies change, new node will be created and it will have a different hash.

kind

kind: "code"

A tag that allows us to pattern match on ExternalNode objects

language

language: string

Language of the plugin that created and owns this node.

source

source: string

Complete source code (Python, R, etc.) in the assoicated block

value

value: Value | null

The evaluated value associated with this node. This is null when the node is created.

Generated using TypeDoc