[][src]Struct lib_ruby_parser::nodes::Heredoc

pub struct Heredoc {
    pub parts: Vec<Node>,
    pub heredoc_body_l: Range,
    pub heredoc_end_l: Range,
    pub expression_l: Range,
}

Represents a here-document literal (both with and without interpolation)

It's similar to Dstr in terms of abstract syntax tree, but has different source maps.

Fields

parts: Vec<Node>

A list of string parts (static literals and interpolated expressions)

heredoc_body_l: Range

Location of the here-document body

<<-HERE\n  a\n   #{42}\nHERE
         ~~~~~~~~~~~~~~~
heredoc_end_l: Range

Location of the here-document end

<<-HERE\n  a\n   #{42}\nHERE
                        ~~~~
expression_l: Range

Location of the here-document identifier

<<-HERE\n  a\n   #{42}\nHERE
~~~~~~~

Note: This is the only node (with XHeredoc) that has expression_l smaller that all other sub-locations merged. The reason for that is that it's possible to add more code after here-document ID:

<<-HERE + "rest"
  content
HERE

Trait Implementations

impl Clone for Heredoc[src]

impl Debug for Heredoc[src]

impl PartialEq<Heredoc> for Heredoc[src]

impl StructuralPartialEq for Heredoc[src]

Auto Trait Implementations

impl RefUnwindSafe for Heredoc

impl Send for Heredoc

impl Sync for Heredoc

impl Unpin for Heredoc

impl UnwindSafe for Heredoc

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.