Extract comments from Solidity code
constexpect=require('expect');constextractComments=require('./index');constcode=`// this is a contractcontract Foo {}`;constcomments=extractComments(code);expect(comments).toEqual([{range: [1,22],raw: ' this is a contract',type: 'LineComment',value: ' this is a contract'}]);