//! String parsing helpers for WPL: quoted string, raw string, simple quoted and escapes.
use WResult;
use crate;
/// Parse a quoted string content with common escapes: \" \\ \n \t \r \xHH.
/// Parse a raw string r#"..."# or r"..." (compat) without processing escapes.
/// Parse a simple quoted string without escapes (read until next ").
/// Decode common escapes in a string (\" \\ \n \t \r \xHH) into UTF-8 string.
pub use decode_escapes;