A delimiter is one or more of the same delimiter character

Used for paired delimiters like emphasis or strong emphasis.

Introduced properties

fun can_close: Bool

markdown2 :: MdDelimiter :: can_close

Cant self close a delimiter?
protected fun can_close=(can_close: Bool)

markdown2 :: MdDelimiter :: can_close=

Cant self close a delimiter?
fun can_open: Bool

markdown2 :: MdDelimiter :: can_open

Can self open a delimiter?
protected fun can_open=(can_open: Bool)

markdown2 :: MdDelimiter :: can_open=

Can self open a delimiter?
init defaultinit(node: MdText, delimiter_char: Char, can_open: Bool, can_close: Bool, prev: nullable MdDelimiter, next: nullable MdDelimiter)

markdown2 :: MdDelimiter :: defaultinit

fun delimiter_char: Char

markdown2 :: MdDelimiter :: delimiter_char

Character used as delimiter
protected fun delimiter_char=(delimiter_char: Char)

markdown2 :: MdDelimiter :: delimiter_char=

Character used as delimiter
fun length: Int

markdown2 :: MdDelimiter :: length

The number of characters in this delimiter run that are left for processing
protected fun length=(length: Int)

markdown2 :: MdDelimiter :: length=

The number of characters in this delimiter run that are left for processing
fun next: nullable MdDelimiter

markdown2 :: MdDelimiter :: next

Next delimiter found
protected fun next=(next: nullable MdDelimiter)

markdown2 :: MdDelimiter :: next=

Next delimiter found
fun node: MdText

markdown2 :: MdDelimiter :: node

Node containing the delimiter
protected fun node=(node: MdText)

markdown2 :: MdDelimiter :: node=

Node containing the delimiter
fun original_length: Int

markdown2 :: MdDelimiter :: original_length

The number of characters originally in this delimiter run
protected fun original_length=(original_length: Int)

markdown2 :: MdDelimiter :: original_length=

The number of characters originally in this delimiter run
fun prev: nullable MdDelimiter

markdown2 :: MdDelimiter :: prev

Previous delimiter found
protected fun prev=(prev: nullable MdDelimiter)

markdown2 :: MdDelimiter :: prev=

Previous delimiter found

Redefined properties

redef type SELF: MdDelimiter

markdown2 $ MdDelimiter :: SELF

Type of this instance, automatically specialized in every class

All properties

fun !=(other: nullable Object): Bool

core :: Object :: !=

Have self and other different values?
fun ==(other: nullable Object): Bool

core :: Object :: ==

Have self and other the same value?
type CLASS: Class[SELF]

core :: Object :: CLASS

The type of the class of self.
type SELF: Object

core :: Object :: SELF

Type of this instance, automatically specialized in every class
fun can_close: Bool

markdown2 :: MdDelimiter :: can_close

Cant self close a delimiter?
protected fun can_close=(can_close: Bool)

markdown2 :: MdDelimiter :: can_close=

Cant self close a delimiter?
fun can_open: Bool

markdown2 :: MdDelimiter :: can_open

Can self open a delimiter?
protected fun can_open=(can_open: Bool)

markdown2 :: MdDelimiter :: can_open=

Can self open a delimiter?
protected fun class_factory(name: String): CLASS

core :: Object :: class_factory

Implementation used by get_class to create the specific class.
fun class_name: String

core :: Object :: class_name

The class name of the object.
init defaultinit(node: MdText, delimiter_char: Char, can_open: Bool, can_close: Bool, prev: nullable MdDelimiter, next: nullable MdDelimiter)

markdown2 :: MdDelimiter :: defaultinit

fun delimiter_char: Char

markdown2 :: MdDelimiter :: delimiter_char

Character used as delimiter
protected fun delimiter_char=(delimiter_char: Char)

markdown2 :: MdDelimiter :: delimiter_char=

Character used as delimiter
fun get_class: CLASS

core :: Object :: get_class

The meta-object representing the dynamic type of self.
fun hash: Int

core :: Object :: hash

The hash code of the object.
init init

core :: Object :: init

fun inspect: String

core :: Object :: inspect

Developer readable representation of self.
protected fun inspect_head: String

core :: Object :: inspect_head

Return "CLASSNAME:#OBJECTID".
intern fun is_same_instance(other: nullable Object): Bool

core :: Object :: is_same_instance

Return true if self and other are the same instance (i.e. same identity).
fun is_same_serialized(other: nullable Object): Bool

core :: Object :: is_same_serialized

Is self the same as other in a serialization context?
intern fun is_same_type(other: Object): Bool

core :: Object :: is_same_type

Return true if self and other have the same dynamic type.
fun length: Int

markdown2 :: MdDelimiter :: length

The number of characters in this delimiter run that are left for processing
protected fun length=(length: Int)

markdown2 :: MdDelimiter :: length=

The number of characters in this delimiter run that are left for processing
fun next: nullable MdDelimiter

markdown2 :: MdDelimiter :: next

Next delimiter found
protected fun next=(next: nullable MdDelimiter)

markdown2 :: MdDelimiter :: next=

Next delimiter found
fun node: MdText

markdown2 :: MdDelimiter :: node

Node containing the delimiter
protected fun node=(node: MdText)

markdown2 :: MdDelimiter :: node=

Node containing the delimiter
intern fun object_id: Int

core :: Object :: object_id

An internal hash code for the object based on its identity.
fun original_length: Int

markdown2 :: MdDelimiter :: original_length

The number of characters originally in this delimiter run
protected fun original_length=(original_length: Int)

markdown2 :: MdDelimiter :: original_length=

The number of characters originally in this delimiter run
fun output

core :: Object :: output

Display self on stdout (debug only).
intern fun output_class_name

core :: Object :: output_class_name

Display class name on stdout (debug only).
fun prev: nullable MdDelimiter

markdown2 :: MdDelimiter :: prev

Previous delimiter found
protected fun prev=(prev: nullable MdDelimiter)

markdown2 :: MdDelimiter :: prev=

Previous delimiter found
fun serialization_hash: Int

core :: Object :: serialization_hash

Hash value use for serialization
intern fun sys: Sys

core :: Object :: sys

Return the global sys object, the only instance of the Sys class.
abstract fun to_jvalue(env: JniEnv): JValue

core :: Object :: to_jvalue

fun to_s: String

core :: Object :: to_s

User readable representation of self.
package_diagram markdown2::MdDelimiter MdDelimiter core::Object Object markdown2::MdDelimiter->core::Object

Parents

interface Object

core :: Object

The root of the class hierarchy.

Class definitions

markdown2 $ MdDelimiter
# A delimiter is one or more of the same delimiter character
#
# Used for paired delimiters like emphasis or strong emphasis.
class MdDelimiter

	# Node containing the delimiter
	var node: MdText

	# Character used as delimiter
	var delimiter_char: Char

	# Can `self` open a delimiter?
	var can_open: Bool

	# Cant `self` close a delimiter?
	var can_close: Bool

	# Previous delimiter found
	var prev: nullable MdDelimiter

	# Next delimiter found
	var next: nullable MdDelimiter

	# The number of characters in this delimiter run that are left for processing
	var length = 1

	# The number of characters originally in this delimiter run
	#
	# At the start of processing, this is the same as `length`.
	var original_length = 1
end
lib/markdown2/markdown_inline_parsing.nit:1159,1--1189,3