[][src]Trait ecmascript::lexer::eschar::ESChar

pub trait ESChar {
    fn is_es_whitespace(self) -> bool;
fn is_es_line_terminator(self) -> bool;
fn is_es_punctuator_start(self) -> bool;
fn is_es_keyword_start(self) -> bool;
fn is_es_keyword_break(self) -> bool;
fn is_es_identifier_start(self) -> bool;
fn is_es_identifier_part(self) -> bool;
fn is_es_identifier_break(self) -> bool;
fn is_es_binary_digit(self) -> bool;
fn is_es_octal_digit(self) -> bool;
fn is_es_hex_digit(self) -> bool;
fn is_es_decimal_digit(self) -> bool;
fn is_es_digit_break(self) -> bool;
fn is_es_single_escape_character(self) -> bool; }

Required methods

fn is_es_whitespace(self) -> bool

fn is_es_line_terminator(self) -> bool

fn is_es_punctuator_start(self) -> bool

fn is_es_keyword_start(self) -> bool

fn is_es_keyword_break(self) -> bool

fn is_es_identifier_start(self) -> bool

fn is_es_identifier_part(self) -> bool

fn is_es_identifier_break(self) -> bool

fn is_es_binary_digit(self) -> bool

fn is_es_octal_digit(self) -> bool

fn is_es_hex_digit(self) -> bool

fn is_es_decimal_digit(self) -> bool

fn is_es_digit_break(self) -> bool

fn is_es_single_escape_character(self) -> bool

Loading content...

Implementations on Foreign Types

impl ESChar for char[src]

Loading content...

Implementors

Loading content...