Example #1
0
    def create_list(self, parent, cur):
        """
Create list of expressions

| Structure:
|   <expression>*

Args:
    parent (Node): Reference to parent node
    cur (int): position where list is identified

Returns:
    int: position where list ends

See also:
    :py:func:`matlab2cpp.tree.misc.list`
    """
        return misc.list(self, parent, cur)
Example #2
0
    def create_list(self, parent, cur):
        """
Create list of expressions

| Structure:
|   <expression>*

Args:
    parent (Node): Reference to parent node
    cur (int): position where list is identified

Returns:
    int: position where list ends

See also:
    :py:func:`matlab2cpp.tree.misc.list`
    """
        return misc.list(self, parent, cur)