2014-12-03 Kun Ren
r nse
One of my favorite features of R is its meta-programming facilities. It can be simply demonstrated by the following examples. 继续阅读 »
2014-07-13 W.Y.
此文译自 Dmitry A. Soshnikov 的 ECMA-262-3 in detail. Chapter 8. Evaluation strategy. 概述 本文将讨论在 ECMAScript 中向函数传递参数的策略。 计算机科学里对这种策略一般称为“evaluation strategy”,即在编程语言中求解或计算某些表达式的值的一系列规则。将参数传递给函数是其中的一个案例。 写这篇文章的原因是因为论坛上有一些类似的讨论,大家都呼吁给出 ECMAScript 中参数传递策略的最精确的说明。本文给出了相应的定义,希望对大家有所帮助。 很多程序员都确信在 JavaScript 中(甚至其它一些语言),对象是按引用传 继续阅读 »
2019-01-21 Xie Jingyi
This chapter develop a small language of numbers and booleans, serving as a straightforward vehicle for the introduction of serveral fundamental concepts like, abstract syntax tree, evaluation and runtime errors. Syntax BNF-like Definition Terms of this language are defined as below: t ::= true false i 继续阅读 »