/[Apache-SVN]
ViewVC logotype

Revision 1454275


Jump to revision: Previous Next
Author: gordonsmith
Date: Fri Mar 8 08:29:30 2013 UTC (11 years, 2 months ago)
Changed paths: 54
Log Message:
Falcon: Finished abstracting the syntax of an MXML document behind a complete set of interfaces (IMXMLData, IMXMLTagData, IMXMLTagAttributeData, etc.) The other parts of the compiler now access the MXML document only through these interfaces rather than through the concrete classes.

Changed paths

Path Details
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/parsing/as/BaseASParser.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/parsing/as/IncludeHandler.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/parsing/mxml/BalancingMXMLProcessor.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/parsing/mxml/MXMLScopeBuilder.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/parsing/mxml/MXMLTagDataDepth.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/parsing/mxml/MXMLTagDataPayload.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/parsing/mxml/MXMLUnitDataIterator.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/scopes/MXMLFileScope.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLArrayNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLClassReferenceNodeBase.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLDeferredInstanceNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLEventSpecifierNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLExpressionNodeBase.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLFileNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLMetadataNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLModelPropertyNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLNodeBase.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLPrivateNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLPropertySpecifierNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLScriptNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLSpecifierNodeBase.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLStyleNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLXMLListNode.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/internal/tree/mxml/XMLBuilder.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLDatabindingData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLDatabindingValue.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLEntityData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLEntityValue.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLInstructionData.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLNamespaceAttributeData.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLTagAttributeData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLTagAttributeValue.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLTagBlobData.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLTagData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLTextData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLTextValue.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/IMXMLUnitData.java added
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLDatabindingData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLDatabindingValue.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLEntityValue.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLInstructionData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLNamespaceAttributeData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLTagAttributeData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLTagAttributeValue.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLTagBlobData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLTagData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLTextData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLTextValue.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/mxml/MXMLUnitData.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/problems/MXMLUnexpectedDatabindingProblem.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/problems/MXMLUnexpectedTextProblem.java modified , text changed
Directoryflex/falcon/trunk/compiler/src/org/apache/flex/compiler/problems/MXMLXMLRequireContentProblem.java modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26