The dynamic-scope tag has no wiki summary.
0
votes
1answer
49 views
Ruby on Rails combining scopes dynamically
I'd like to be able to dynamically combine scopes at runtime, to create a custom query based on user input. Say I have a library application with a Book model, and I have the following scopes ...
1
vote
4answers
90 views
Local variable to external function
I'm trying to access a variable local to a function in an external function as a free variable.
This is what I'm trying to achieve:
function try_evaluate() {
var i = 0;
show_r("i <= 10");
...
1
vote
1answer
64 views
Does Eval really introduce dynamic scoping to JavaScript?
People say that Eval brings dynamic scope into JavaScript, but I don't see how that statement is valid. Using Eval evaluates the expression using the same lexical environment/variable environment as ...
1
vote
1answer
65 views
Call by Name with dynamic scoping
I am stuck at the following problem on static/dynamic scoping:
The following program fragment is written in a programming language that allows global
variables and does not allow nested declarations ...
5
votes
2answers
147 views
what is the practical purpose of clojure's dynamic vars and binding?
I had a look at the references: http://clojure.org/vars#Vars%20and%20the%20Global%20Environment, http://clojuredocs.org/clojure_core/clojure.core/binding
as well as clojure and ^:dynamic and Clojure ...
6
votes
1answer
354 views
Clojure Dynamic Binding
I realize the following is a bad idea for many reasons. I also realize that given I have a stackoverflow rep of 23, it's nature to assume that I'm a newb learning to program. However, please humor me, ...
2
votes
1answer
158 views
Lexical vs dynamic scoping in terms of SICP's Environment Model of Evaluation
In Section 3.2.2 of SICP the execution of the following piece of code
(define (square x)
(* x x))
(define (sum-of-squares x y)
(+ (square x) (square y)))
(define (f a)
(sum-of-squares (+ a 1) ...
6
votes
1answer
372 views
clojure and ^:dynamic
I tried to understand dynamic variables and binding function so I tried this (clojure 1.3):
user=> (defn f []
(def ^:dynamic x 5)
(defn g [] (println x))
(defn ...
1
vote
5answers
258 views
Is there a better way to simulate pointers in JavaScript?
I'm using dynamic scoping to simulate pointers in JavaScript as follows:
var ptr = (function () {
var ptr = "(" + String(function (value) {
if (value === void 0) return upvalue;
else ...
9
votes
6answers
756 views
Is it possible to achieve dynamic scoping in JavaScript without resorting to eval?
JavaScript has lexical scoping which means that non-local variables accessed from within a function are resolved to variables present in the parents' scope of that function when it was defined. This ...
0
votes
1answer
275 views
Simulate dynamic scoping in Java?
I found this piece of code on dynamic scoping in java. But it confuses me.
Simulation of dynamic scoping in java
Could someone please tell me whether is this the way you do dynamic scoping?
static ...
15
votes
1answer
908 views
What are the new rules for variable scoping in Emacs 24?
Emacs 24 now has lexically-scoped variables. It also still has dynamically-scoped variables, of course. Now that it has both, I'm quite confused about when a variable will have which kind of scope. ...
3
votes
1answer
5k views
When is it appropriate to set a request-scoped variable in a JSP?
In my experience, it is rarely/never necessary to set scope="request" on an EL variable.
For example, I have a page that, given an item parameter, constructs a URL specific to that item based on its ...
7
votes
4answers
402 views
How to overcome the lack of local variable for emacs lisp closure
I'm now studying Emacs Lisp from the reference manual and Common Lisp from a LISP Book.
from the Common Lisp book
>> (setf power-of-two
(let ((previous-power-of-two 1))
#'(lambda ...
2
votes
1answer
263 views
scala: what is the inner class method for dynamic scoping?
i'm trying to evaluate all 3 methods of dynamic scoping described here (https://wiki.scala-lang.org/display/SYGN/Dynamic-scope) and i understand all but the "inner class method". it is described as ...
1
vote
1answer
514 views
Making dynamic scope helpers in Rails
Several of my partials can be rendered in two "modes". If full_display is false, I don't render several fields. To make things easy I wanted to make one of the "modes" default - if full_display is ...
1
vote
1answer
176 views
Adopting dynamic scoping of variables
Imagine you are designing your own programming language. Very simple language for quite specific purpose. It has functions, loops and variables. And you want to make use of dynamic scoping for ...
6
votes
3answers
1k views
Emulating lisp cons cells in Python
A list in lisp is a series of cons cells, but in Python, a native list is a different kind of object. For translating code from lisp to Python, one might simply take lisp lists and translate them to ...
5
votes
2answers
594 views
Closures and dynamic scope?
I think I understand why there is a danger in allowing closures in a language using dynamic scope. That is, it seems you will be able to close the variable OK, but when trying to read it you will ...
5
votes
1answer
188 views
Emulating lisp cons cells in Tcl
A list in lisp is a series of cons cells, but in Tcl, a list is a string with whitespace separating the elements. For translating code from lisp to tcl, one might simply take lisp lists and translate ...
4
votes
4answers
1k views
How to create dynamical scoped variables in Python?
I am translating some code from lisp to Python.
In lisp, you can have a let construct with the variables introduced declared as special and thus having dynamic scope. (See ...
13
votes
2answers
7k views
Dynamic Scoping - Deep Binding vs Shallow Binding
I've been trying to get my head around shallow binding and deep binding, wikipedia doesn't do a good job of explaining it properly. Say I have the following code, what would the output be if the ...
17
votes
7answers
6k views
What are the advantages of dynamic scoping?
I've learned that static scoping is the only sane way to do things, and that dynamic scoping is the tool of the devil, and results only from poor implementations of interpreters/compilers.
Then I ...
