Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:76295 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 30808 invoked from network); 31 Jul 2014 18:19:40 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 31 Jul 2014 18:19:40 -0000 Authentication-Results: pb1.pair.com smtp.mail=php@golemon.com; spf=softfail; sender-id=softfail Authentication-Results: pb1.pair.com header.from=php@golemon.com; sender-id=softfail Received-SPF: softfail (pb1.pair.com: domain golemon.com does not designate 209.85.192.181 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.192.181 mail-pd0-f181.google.com Received: from [209.85.192.181] ([209.85.192.181:58509] helo=mail-pd0-f181.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DF/12-09748-9B88AD35 for ; Thu, 31 Jul 2014 14:19:38 -0400 Received: by mail-pd0-f181.google.com with SMTP id g10so3943818pdj.40 for ; Thu, 31 Jul 2014 11:19:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=2UakLn3sx03qw5zOkMX1fl8z+tVJSEBHNT1mdoaU5Qw=; b=fw0Q5s7zC7uj1lhP7zs0vaBM5Vmep2aSxL3XQqJ31fK1W5hfCJSvLfMD/SFyNaZdmF mPkMXyrgR88e2xbb7DQm302OfyrcVlCUu1u3pLqHCdPTIMtvzqdy4+fbXySmloNoIQRC IcztC6NC/nw8BWIb7TBGB5J30/yd2ct4rSQsyRETSV3Rxjcqx0H4Q/DdG8z+rcqgQXc9 Nr2xLvfZefP+tzd/dXdSh9bekXThklRTwzfygw3lmhsKAToOszaJCAVNsZn8GmfPvU6I Xwbn5bNt8dzWvetq2Yk2cLf/Ez6S0l+iZns5r1ryFZyI/k1wXsHiE8kFYxBDKhZ3owxf uvxg== X-Gm-Message-State: ALoCoQkDhM6EwzlQW2MYCIggwKnqur/cDba9SwmWr0Ua3iCeshz2pKg7d6rFZFtvL+u01XO37wWl MIME-Version: 1.0 X-Received: by 10.66.65.195 with SMTP id z3mr5723645pas.116.1406830793318; Thu, 31 Jul 2014 11:19:53 -0700 (PDT) Sender: php@golemon.com Received: by 10.70.95.37 with HTTP; Thu, 31 Jul 2014 11:19:53 -0700 (PDT) X-Originating-IP: [2620:0:1cfe:b:6a5b:35ff:fecc:2687] In-Reply-To: References: Date: Thu, 31 Jul 2014 11:19:53 -0700 X-Google-Sender-Auth: hrTiAd61Bj24bOt5RNWJXLsJBxU Message-ID: To: Nikita Popov Cc: PHP internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] [RFC] Introduce Abstract Syntax Tree From: pollita@php.net (Sara Golemon) On Thu, Jul 31, 2014 at 11:11 AM, Nikita Popov wrote: > I've created a draft RFC and implementation for the introduction of an > Abstract Syntax Tree (AST) as an intermediate structure in our compilation > process: > > https://wiki.php.net/rfc/abstract_syntax_tree > > The RFC outlines why an AST is beneficial, how it impacts performance and > memory usage of the compile process and what changes to syntax or behavior > it introduces. > > Furthermore the RFC contains an outline of how the current implementation > works and what APIs it provides. This section is just an overview and I > hope to extend it in the future. > +1 all the way, man.