• DoctypeDeclaration{http://etl.sf.net/etl/doctype/0.2.1}:
    • systemId: "Fallbacks.g.etl"
    • context: "EmptyFallbacks"
  • SomeStatement{http://etl.sf.net/2006/tests/fallbacks}:
    • documentation: /// a documentation
    • attributes: ok
    • value: test
  • BlankStatement{http://etl.sf.net/2006/tests/fallbacks}:
    • documentation: /// a documentation
    • attributes: ok
  • BlankStatement{http://etl.sf.net/2006/tests/fallbacks}:
    • documentation: /// a documentation
  • BlankStatement{http://etl.sf.net/2006/tests/fallbacks}:
    • documentation: /// a documentation
    • attributes: ok
     1: doctype "Fallbacks.g.etl" context "EmptyFallbacks";
     2: 
     3: // The line below demonstrate correct non-empty statement
     4: /// a documentation
     5: @[ok] some test;
     6: 
     7: // The line below demonstrate correct empty statement
     8: /// a documentation
     9: @[ok];
    10: 
    11: 
    12: // The line below demonstrate error in the attributes
    13: /// a documentation
    14: @[1] some test;
    15: 
    16: // The line below demonstrate error in the statement
    17: /// a documentation
    18: @[ok] error;
  • SYNTAX_ERROR: EmptyFallbacks.test.etl(14,3,321)-(14,3,321): Syntax error. Expecting token with kind "IDENTIFIER".
  • SYNTAX_ERROR: EmptyFallbacks.test.etl(18,7,419)-(18,7,419): Syntax error. Expecting end of segment.