1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
foo {
test-1: literal+literal;
test-2: literal +literal;
test-3: literal+ literal;
test-4: literal + literal;
test-5: literal+"quoted";
test-6: literal +"quoted";
test-7: literal+ "quoted";
test-8: literal + "quoted";
test-9: literal+#{interpolant};
test-10: literal +#{interpolant};
test-11: literal+ #{interpolant};
test-12: literal + #{interpolant};
test-13: literal+lschema_#{ritlp};
test-14: literal +lschema_#{ritlp};
test-15: literal+ lschema_#{ritlp};
test-16: literal + lschema_#{ritlp};
test-17: literal+#{litlp}_rschema;
test-18: literal +#{litlp}_rschema;
test-19: literal+ #{litlp}_rschema;
test-20: literal + #{litlp}_rschema;
test-21: "quoted"+"quoted";
test-22: "quoted" +"quoted";
test-23: "quoted"+ "quoted";
test-24: "quoted" + "quoted";
test-25: "quoted"+#{interpolant};
test-26: "quoted" +#{interpolant};
test-27: "quoted"+ #{interpolant};
test-28: "quoted" + #{interpolant};
test-29: "quoted"+lschema_#{ritlp};
test-30: "quoted" +lschema_#{ritlp};
test-31: "quoted"+ lschema_#{ritlp};
test-32: "quoted" + lschema_#{ritlp};
test-33: "quoted"+#{litlp}_rschema;
test-34: "quoted" +#{litlp}_rschema;
test-35: "quoted"+ #{litlp}_rschema;
test-36: "quoted" + #{litlp}_rschema;
test-37: #{interpolant}+#{interpolant};
test-38: #{interpolant} +#{interpolant};
test-39: #{interpolant}+ #{interpolant};
test-40: #{interpolant} + #{interpolant};
test-41: #{interpolant}+lschema_#{ritlp};
test-42: #{interpolant} +lschema_#{ritlp};
test-43: #{interpolant}+ lschema_#{ritlp};
test-44: #{interpolant} + lschema_#{ritlp};
test-45: #{interpolant}+#{litlp}_rschema;
test-46: #{interpolant} +#{litlp}_rschema;
test-47: #{interpolant}+ #{litlp}_rschema;
test-48: #{interpolant} + #{litlp}_rschema;
test-49: lschema_#{ritlp}+lschema_#{ritlp};
test-50: lschema_#{ritlp} +lschema_#{ritlp};
test-51: lschema_#{ritlp}+ lschema_#{ritlp};
test-52: lschema_#{ritlp} + lschema_#{ritlp};
test-53: lschema_#{ritlp}+#{litlp}_rschema;
test-54: lschema_#{ritlp} +#{litlp}_rschema;
test-55: lschema_#{ritlp}+ #{litlp}_rschema;
test-56: lschema_#{ritlp} + #{litlp}_rschema;
test-57: #{litlp}_rschema+#{litlp}_rschema;
test-58: #{litlp}_rschema +#{litlp}_rschema;
test-59: #{litlp}_rschema+ #{litlp}_rschema;
test-60: #{litlp}_rschema + #{litlp}_rschema;
}
|