Show
Ignore:
Timestamp:
04/15/09 10:34:48 (7 months ago)
Author:
jmaessen
Message:

[libraries, demos] Replace emptyList[\T\]() by <|[\T\] |> throughout,
except within List and PureList themselves.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/static_tests/syntax_abstraction/Xml.fss

    r3329 r3645  
    6666    attributes():List[\Attribute\] = info.attributes 
    6767  end 
    68   Element(info:Header) = Element(info, emptyList[\Content\](), info.startTag) 
    69   Element(info:Header, endTag:String) = Element(info, emptyList[\Content\](), endTag) 
     68  Element(info:Header) = Element(info, <|[\Content\] |>, info.startTag) 
     69  Element(info:Header, endTag:String) = Element(info, <|[\Content\] |>, endTag) 
    7070 
    7171  object Header(startTag:String, attributes:List[\Attribute\])