view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 16983:54a21a1bec26

matcher needs to indirect through NodeClass to work properly in the presence of generated Node classes
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 Aug 2014 18:59:09 +0200
parents e34d5cca7496
children
line wrap: on
line source

function main() {  
  i = 0;  
  while (i < 1000) {  
    i = i + 1;  
  }  
  return i;  
}