Code coverage report for lib/create.js

Statements: 100% (4 / 4)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (4 / 4)      Ignored: none     

All files » lib/ » create.js
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    1                               1     1               1  
'use strict';
 
var def = require('./def');
 
// CREATE
 
// DOES>
 
// : : CREATE ] DOES> doLIST ;
 
// : VARIABLE CREATE 1 CELLS ALLOT ;
// : VARIABLE CREATE 0 , ;
 
 
// : ; next [ ; IMMEDIATE
// : ; POSTPONE EXIT  REVEAL POSTPONE [ ; IMMEDIATE
 
 
function main (cxt) {
 
// : CONSTANT CREATE , DOES> @ ;
    def('constant', function () {
        // var w = this.word('\\s');
        // console.log(w);
        // console.log(this.dpop());
    }, cxt);
 
}
 
module.exports = main;