class Statements extends AnyRef
Python's statement grammar. This can only be used in statement-blocks, and is sensitive to newlines and indentation to determine nesting
Manually transcribed from https://docs.python.org/2/reference/grammar.html
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Statements
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Statements(indent: Int)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val ENDMARKER: fastparse.noApi.P0
- val NEWLINE: fastparse.noApi.P0
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val assert_stmt: fastparse.noApi.P[Assert]
- val augassign: fastparse.noApi.P[operator]
- val break_stmt: Parser[Break.type, Char, String]
- val classdef: fastparse.noApi.P[(Seq[expr]) ⇒ ClassDef]
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def collapse_dotted_name(name: Seq[identifier]): expr
- val compound_stmt: fastparse.noApi.P[stmt]
- val continue_stmt: Parser[Continue.type, Char, String]
- val decorated: fastparse.noApi.P[stmt]
- val decorator: fastparse.noApi.P[expr]
- val decorators: fastparse.noApi.Parser[Seq[expr]]
- val del_stmt: Parser[Delete, Char, String]
- val dotted_as_name: fastparse.noApi.P[alias]
- val dotted_as_names: fastparse.noApi.Parser[Seq[alias]]
- val dotted_name: fastparse.noApi.Parser[Seq[identifier]]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val eval_input: fastparse.noApi.P[expr]
- val except_clause: fastparse.noApi.Parser[Option[(expr, Option[expr])]]
- val exec_stmt: fastparse.noApi.P[Exec]
- val expr_stmt: fastparse.noApi.P[stmt]
- val file_input: fastparse.noApi.P[Seq[stmt]]
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- val flow_stmt: fastparse.noApi.P[stmt]
- val for_stmt: fastparse.noApi.P[For]
- val funcdef: fastparse.noApi.P[(Seq[expr]) ⇒ FunctionDef]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- val global_stmt: fastparse.noApi.P[Global]
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- val if_stmt: fastparse.noApi.P[If]
- val import_as_name: fastparse.noApi.P[alias]
- val import_as_names: fastparse.noApi.Parser[Seq[alias]]
- val import_from: fastparse.noApi.P[ImportFrom]
- val import_name: fastparse.noApi.P[Import]
- val import_stmt: fastparse.noApi.P[stmt]
- val indents: fastparse.noApi.Parser[Unit]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- val parameters: fastparse.noApi.P[arguments]
- val pass_stmt: Parser[Pass.type, Char, String]
- val print_stmt: fastparse.noApi.P[Print]
- val raise_stmt: fastparse.noApi.P[Raise]
- val return_stmt: Parser[Return, Char, String]
- val simple_stmt: fastparse.noApi.P[Seq[stmt]]
- val single_input: fastparse.noApi.P[Seq[stmt]]
- val small_stmt: fastparse.noApi.P[stmt]
- val space: fastparse.noApi.Parser[Unit]
- val space_indents: fastparse.noApi.Parser[Unit]
- val spaces: fastparse.noApi.Parser[Unit]
- val stmt: fastparse.noApi.P[Seq[stmt]]
- val suite: fastparse.noApi.P[Seq[stmt]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- val try_stmt: fastparse.noApi.P[stmt]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- val while_stmt: Parser[While, Char, String]
- val with_item: fastparse.noApi.P[(expr, Option[expr])]
- val with_stmt: fastparse.noApi.P[With]
- val yield_stmt: Parser[Expr, Char, String]