background preloader

Programming

Facebook Twitter

jQuery Project. Main Page.

Mozzilla Developer Center

The CPAN Search Site. Parse::RecDescent. Parse::RecDescent - Generate Recursive-Descent Parsers This document describes version 1.965001 of Parse::RecDescent released April 9, 2003. use Parse::RecDescent; $parser = new Parse::RecDescent ($grammar); $anotherparser = new Parse::RecDescent ($othergrammar); $parser->startrule($text); $parser->otherrule($text); $Parse::RecDescent::skip = '[ \t]+'; $parser->Replace($newgrammar); $parser->Extend($moregrammar); $::RD_ERRORS $::RD_WARN $::RD_HINT $::RD_TRACE $::RD_AUTOSTUB $::RD_AUTOACTION Overview Parse::RecDescent incrementally generates top-down recursive-descent text parsers from simple yacc-like grammar specifications. Using Parse::RecDescent Parser objects are created by calling Parse::RecDescent::new, passing in a grammar specification (see the following subsections).

$grammar = q { }; $parser = new Parse::RecDescent ($grammar) or die "Bad grammar! If the starting rule succeeds, its value (see below) is returned. $parser->startrule($text) or print "Bad text! $parser->startrule(\$text) Perl programming documentation. ColdFusion. ColdFusion is a commercial rapid web application development platform invented by Jeremy Allaire and JJ Allaire in 1995. (The programming language used with that platform is also commonly called ColdFusion, though is more accurately known as CFML.) ColdFusion was originally designed to make it easier to connect simple HTML pages to a database. By Version 2 (1996), it had become a full platform that included an IDE in addition to a "full" scripting language. As of 2010[update], versions of ColdFusion (purchased by Adobe Systems in 2005) include advanced features for enterprise integration and development of rich Internet applications[citation needed].

Overview[edit] One of the distinguishing features of ColdFusion is its associated scripting language, ColdFusion Markup Language. Originally a product of Allaire and released in July 1995, ColdFusion was developed by brothers Joseph J. Main features[edit] ColdFusion provides a number of additional features out of the box.

Other features[edit] Home - General Interface Docs - General Interface. General Interface.