Harbs created FLEX-35073:
----------------------------

             Summary: Multiline XML literal not compiled correctly
                 Key: FLEX-35073
                 URL: https://issues.apache.org/jira/browse/FLEX-35073
             Project: Apache Flex
          Issue Type: Bug
          Components: FalconJX
            Reporter: Harbs


The following:
                var xmlSource:XML =
<xmlParentNode>
   <Set1>
      <child><year>2015</year></child>
      <child><year>2016</year></child>
      <child><year>2017</year></child>
  </Set1>
  <Set2>
      <child><year>2015</year></child>
      <child><year>2016</year></child>
      <child><year>2017</year></child>
  </Set2>
</xmlParentNode>;
becomes:
  var /** @type {XML} */ xmlSource = new XML( '<xmlParentNode>
   <Set1>
      <child><year>2015</year></child>
      <child><year>2016</year></child>
      <child><year>2017</year></child>
  </Set1>
  <Set2>
      <child><year>2015</year></child>
      <child><year>2016</year></child>
      <child><year>2017</year></child>
  </Set2>
</xmlParentNode>') ;

Without escaping line endings, this does not work.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to