view graal/com.oracle.truffle.sl.test/tests/Null.sl @ 18453:e3376d3e3160

DelayedFrameMapBuilder: remove TrackedVirtualStackSlot.transform().
author Josef Eisl <josef.eisl@jku.at>
date Mon, 17 Nov 2014 19:32:55 +0100
parents b16ec83edc73
children
line wrap: on
line source

/* The easiest way to generate null: a function without a return statement implicitly returns null. */
function null() {
}

function main() {  
  println(null());  
  println(null() == null());  
  println(null() != null());  
  println(null() == 42);  
  println(null() != 42);  
  println(null() == "42");  
  println(null() != "42");  
}