Home | History | Annotate | Download | only in src

Lines Matching refs:Literal

167   // function literal.  Returns false (and deallocates any allocated AST
341 // Reports whether the pattern might be used as a literal search string.
539 // literal.
547 // Populate the literals fixed array for a materialized array literal.
555 // If the expression is a literal, return the literal value;
556 // if the expression is a materialized literal and is simple return a
558 // Otherwise, return undefined literal as the placeholder
559 // in the object literal boilerplate.
630 Literal* GetLiteralUndefined();
631 Literal* GetLiteralTheHole();
632 Literal* GetLiteralNumber(double value);
646 // Strict mode octal literal validation.
681 // Create a number literal.
682 Literal* NewNumberLiteral(double value);
722 // If true, the next (and immediately following) function literal is
795 // A JSON value is either a (double-quoted) string literal, a number literal,
796 // one of "true", "false", or "null", or an object or array literal.
798 // Parse a JSON object literal (grammar production JSONObject).
799 // An object literal is a squiggly-braced and comma separated sequence
801 // literal, the value is a JSON value, and the two are separated by a colon.
805 // Parses a JSON array literal (grammar production JSONArray). An array
806 // literal is a square-bracketed and comma separated sequence (possibly empty)
815 // Converts the currently parsed literal to a JavaScript String.