[−][src]Struct lib_ruby_parser::nodes::XHeredoc
Represents a executable here-document literal (both with and without interpolation)
It's similar to Xstr
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 executable here-document body
<<-`HERE`\n a\n #{42}\nHERE
~~~~~~~~~~~~~~~
heredoc_end_l: Range
Location of the executable here-document end
<<-`HERE`\n a\n #{42}\nHERE
~~~~
expression_l: Range
Location of the executable here-document identifier
<<-`HERE`\n a\n #{42}\nHERE
~~~~~~~
Note: This is the only node (with Heredoc
) 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 XHeredoc
[src][+]
impl Debug for XHeredoc
[src][+]
impl PartialEq<XHeredoc> for XHeredoc
[src][+]
impl StructuralPartialEq for XHeredoc
[src]
Auto Trait Implementations
impl RefUnwindSafe for XHeredoc
impl Send for XHeredoc
impl Sync for XHeredoc
impl Unpin for XHeredoc
impl UnwindSafe for XHeredoc
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,