Class: TCheck01

Seven~ TCheck01

Example 7/01: actions to compile string values and conversions into functions.


new TCheck01()

Source:

Extends

Methods


_unq()

Removes quotes and backslash

Source:

add()

add: '+' product; returns fct for composition

Inherited From:
Source:

assign()

assign: Name '=' sum; returns fct

Inherited From:
Source:

cmp()

cmp: sum rel; returns fct

Inherited From:
Source:

divide()

divide: '/' signed; returns fct for composition

Inherited From:
Source:

eq()

eq: '=' expr; returns fct for composition

Inherited From:
Source:

ge()

ge: '>=' expr; returns fct for composition

Inherited From:
Source:

gt()

gt: '>' expr; returns fct for composition

Inherited From:
Source:

input()

input: 'input' String String; [replace] returns fct

Overrides:
Source:

le()

le: '<=' expr; returns fct for composition

Inherited From:
Source:

list()

list: sum [{ ',' sum }]; returns executable

Inherited From:
Source:

loop()

loop: 'while' cmp 'do' stmts 'od'; returns fct

Inherited From:
Source:

lt()

lt: '<' expr; returns fct for composition

Inherited From:
Source:

multiply()

multiply: '*' signed; returns fct for composition

Inherited From:
Source:

name()

name: Name; returns fct

Inherited From:
Source:

ne()

ne: '<>' expr; returns fct for composition

Inherited From:
Source:

number()

number: Number; returns fct

Inherited From:
Source:

print()

print: 'print' sums; returns function

Inherited From:
Source:

product()

product: signed [{ multiply | divide }]; returns fct

Inherited From:
Source:

prog()

prog: stmts; returns executable

Inherited From:
Source:

select()

select: 'if' cmp 'then' stmts [ 'else' stmts ] 'fi'; returns fct

Inherited From:
Source:

signed()

signed: [ '-' ] term; returns fct

Inherited From:
Source:

stmts()

stmts: stmt [{ ';' stmt }]; returns fct

Inherited From:
Source:

string()

string: String; returns fct

Source:

stringEq()

stringEq: '=' stringSum; returns fct for composition

Source:

stringGe()

stringGe: '>=' stringSum; returns fct for composition

Source:

stringGt()

stringGt: '>' stringSum; returns fct for composition

Source:

stringLe()

stringLe: '<=' stringSum; returns fct for composition

Source:

stringLt()

stringLt: '<' stringSum; returns fct for composition

Source:

stringNe()

stringNe: '<>' stringSum; returns fct for composition

Source:

stringSum()

stringSum: stringTerm [{ stringTerm }]; returns fct

Source:

stringTerm()

stringTerm: string | name | input | 'string' term;

Source:

subtract()

subtract: '-' product; returns fct for composition

Inherited From:
Source:

sum()

sum: product [{ add | subtract }]; returns fct

Inherited From:
Source:

sums()

sums: sum [{ ',' sum }]; returns list of functions

Inherited From:
Source:

term()

term: number | '(' sum ')' | 'number' stringTerm; returns fct:term

Overrides:
Source: