This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| macro <<EOS { | |
| case { $_ } => { | |
| var comments = #{$_}[0].token.leadingComments; | |
| var text = ''; | |
| if (comments) { | |
| text = comments.map(function(c) { | |
| return c.type === 'Block' ? c.value.replace(/^(\r\n|\n|\r)/, '').replace(/(\r\n|\n|\r)$/, '') : c.value; | |
| }).join('\r\n'); | |
| } | |
| return [makeValue(text, #{here})]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javax.script.ScriptEngine; | |
| import javax.script.ScriptEngineManager; | |
| public class E4X { | |
| public static void main(String[] args) { | |
| System.out.println("E4X: " + System.getProperty("nashorn.lexer.xmlliterals")); | |
| ScriptEngineManager manager = new ScriptEngineManager(); | |
| ScriptEngine engine = manager.getEngineByName("js"); | |
| try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/_build/html/_static/searchtools.js b/_build/html/_static/searchtools.js | |
| index 3499624..6843d3b 100644 | |
| --- a/_build/html/_static/searchtools.js | |
| +++ b/_build/html/_static/searchtools.js | |
| @@ -81,7 +81,22 @@ var Search = { | |
| }, | |
| setIndex : function(index) { | |
| + function objToSortArray(terms) { | |
| + var res = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link rel="stylesheet" href="test.cjs"> | |
| </head> | |
| <body> | |
| <script src="test.cjs"></script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ref. http://qiita.com/edo_m18/items/7b3c70ed97bac52b2203 | |
| (require => { | |
| require("babel/polyfill"); | |
| function Point(x, y) { | |
| this.x = x; | |
| this.y = y; | |
| } | |
| Object.assign(Point.prototype, { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| macro forOf { | |
| case (var $name:ident of $array) $body => { | |
| (function(array) { | |
| for (var i = 0, len = array.length; i < len; i++) { | |
| var $name = array[i]; | |
| $body | |
| } | |
| })($array); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| macro async { | |
| case :{ $rest } => { | |
| $rest | |
| } | |
| case :{ $head $rest ... } => { | |
| $head | |
| async: { $rest ... } | |
| } | |
| case :{ var $x:ident = await($yield:ident, $y ...); $rest ... } => { | |
| (function($yield) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyClass { | |
| constructor(a, b, c) { | |
| this.sum_ = a + b + c; | |
| } | |
| sum() { | |
| return this.sum_; | |
| } | |
| } | |
| console.log(new MyClass(2, 3, 4).sum()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| macro bf { | |
| case ($body ...) => { | |
| eval('var p = 0, b = [], buf = new Buffer(1);'); | |
| _bf($body ...); | |
| } | |
| } | |
| macro _bf { | |
| case (>) => { | |
| eval('p++;'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| macro bf { | |
| case : { $body ... } => { | |
| (function() { | |
| var env = { | |
| p: 0, | |
| b: [], | |
| buf: new Buffer(1) | |
| }; | |
| bf_tokenizer[env]($body ...); | |
| })(); |
OlderNewer