Trait swc_ecma_parser::lexer::util::CharExt[][src]

pub trait CharExt: Copy {
    fn to_char(self) -> Option<char>;

    fn is_ident_start(self) -> bool { ... }
fn is_ident_part(self) -> bool { ... }
fn is_line_break(self) -> bool { ... }
fn is_ws(self) -> bool { ... } }

Implemented for char.

Required methods

fn to_char(self) -> Option<char>[src]

Loading content...

Provided methods

fn is_ident_start(self) -> bool[src]

Test whether a given character code starts an identifier.

https://tc39.github.io/ecma262/#prod-IdentifierStart

fn is_ident_part(self) -> bool[src]

Test whether a given character is part of an identifier.

fn is_line_break(self) -> bool[src]

See https://tc39.github.io/ecma262/#sec-line-terminators

fn is_ws(self) -> bool[src]

See https://tc39.github.io/ecma262/#sec-white-space

Loading content...

Implementations on Foreign Types

impl CharExt for char[src]

Loading content...

Implementors

Loading content...