File: ExcelFormulaParser.pyi

package info (click to toggle)
python-canmatrix 1.2~github-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,012 kB
  • sloc: xml: 30,201; python: 14,631; makefile: 31; sh: 7
file content (68 lines) | stat: -rw-r--r-- 1,481 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Stubs for xlwt.ExcelFormulaParser (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from .ExcelMagic import *
from . import antlr
from typing import Any

class FormulaParseException(Exception): ...

SKIP: Any
INVALID_TYPE: Any
EOF_TYPE: Any
EOF: Any
NULL_TREE_LOOKAHEAD: Any
MIN_USER_TYPE: Any
TRUE_CONST: int
FALSE_CONST: int
STR_CONST: int
NUM_CONST: int
INT_CONST: int
FUNC_IF: int
FUNC_CHOOSE: int
NAME: int
QUOTENAME: int
EQ: int
NE: int
GT: int
LT: int
GE: int
LE: int
ADD: int
SUB: int
MUL: int
DIV: int
POWER: int
PERCENT: int
LP: int
RP: int
LB: int
RB: int
COLON: int
COMMA: int
SEMICOLON: int
REF2D: int
REF2D_R1C1: int
BANG: int
CONCAT: int

class Parser(antlr.LLkParser):
    tokenNames: Any = ...
    rpn: bytes = ...
    sheet_references: Any = ...
    xcall_references: Any = ...
    def __init__(self, *args: Any, **kwargs: Any) -> None: ...
    def formula(self) -> None: ...
    def expr(self, arg_type: Any) -> None: ...
    def prec0_expr(self, arg_type: Any) -> None: ...
    def prec1_expr(self, arg_type: Any) -> None: ...
    def prec2_expr(self, arg_type: Any) -> None: ...
    def prec3_expr(self, arg_type: Any) -> None: ...
    def prec4_expr(self, arg_type: Any) -> None: ...
    def prec5_expr(self, arg_type: Any) -> None: ...
    def primary(self, arg_type: Any) -> None: ...
    def sheet(self): ...
    def expr_list(self, arg_type_list: Any, min_argc: Any, max_argc: Any): ...

def mk_tokenSet_0(): ...