開発環境
- macOS Sierra - Apple (OS)
- Emacs (Text Editor)
- JavaScript (プログラミング言語)
- Node.js, Safari(JavaScript エンジン)
- Learning JavaScript [邦訳](参考書籍)
メタプログラミングRuby 第2版(Paolo Perrotta (著)、角 征典 (翻訳)、オライリージャパン)の1部(メタプログラミング Ruby)、5章(木曜日: クラス定義)、5.3(特異メソッド)、5.3.3(クラスマクロ)を JavaScript で取り組んでみる。
HTML5
<pre id="output0"></pre> <button id="run0">run</button> <button id="clear0">clear</button> <script src="sample3.js"></script>
JavaScript
let btn0 = document.querySelector('#run0'),
btn1 = document.querySelector('#clear0'),
pre0 = document.querySelector('#output0'),
p = (x) => pre0.textContent += x + '\n';
let Book = () => {
let that = {},
subtitle = () => 'subtitle method',
lendTo = (user) => p(`Lending to ${user}`);
deprecate = (oldMethod, newMethod) => {
that[oldMethod] = (...args) => {
p(`Warning: ${oldMethod}() is deprecated. Use ${newMethod}().`);
return that[newMethod](...args);
};
};
that.subtitle = subtitle;
that.lendTo = lendTo;
deprecate('LEND_TO_USER', 'lendTo');
deprecate('title2', 'subtitle');
return that;
};
let output = () => {
let b = Book();
b.LEND_TO_USER('Bill');
b.lendTo('Bill');
p(b.title2());
p(b.subtitle());
};
btn0.onclick = output;
btn1.onclick = () => pre0.textContent = '';
output();
0 コメント:
コメントを投稿