The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
88 views

What's the logic behind this python global scoping magic?

I was messing around with the scoping in python and found something that I think is rather strange: g = 5 def foo(a): if a: global g g = 10 else: g = 20 ...
1
vote
2answers
61 views

Why isn't this form evaluated inside the lexical context of the let form

I am trying to make a macro that creates a function that takes S-expresions and evaluates them inside the lexical context of the fixture. Here is the macro I wrote: (defmacro def-fixture (name ...
13
votes
4answers
283 views

Ruby - Lexical scope vs Inheritance

This is a continuation this original SO question: Using "::" instead of "module ..." for Ruby namespacing In the original SO question, here is the scenario presented which I'm ...
1
vote
0answers
65 views

Ruby Koans - Continuation of Lexical Scope vs Inheritance Hierarchy

I've had a chance to look around in StackOverflow and found this same question which I was trying to better understand from Ruby Koans (Ruby Koans: explicit scoping on a class definition part 2). ...
3
votes
1answer
32 views

Racket: lexical scope inside for

In Haskell, inside a list comprehension, i can bind expressions to a variable every iteration: [a | x <- xs, let a = x ^ 2, a >= 25] How do i bind lexical variables in Racket's for ...
2
votes
1answer
90 views

How to use lambda as lexical scope in C++

The codes are like this: int a = 1; auto f = [a] {return a;}; a = 100; std::cout << f() << endl; return 0; I expected to see 100 as the result. However, the a is like freezed when ...
1
vote
2answers
125 views

Does emacs lisp support lexically redefining a function?

Recent versions of Emacs support lexical binding for variables in elisp code. Is it also possible to lexically redefine functions? In other words, does Emacs Lisp have something like lexical-flet?
1
vote
3answers
65 views

Javascript - Closures - Lexical Scoping - How to include a loop variable data in nested function? [duplicate]

Possible Duplicate: Javascript infamous Loop problem? I have the following code: function test() { var columns = options.columns; for (var i =0; i < columns.length; i++) { if ...
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) ...
0
votes
4answers
56 views

What is the point of free standing blocks if there is no block scope? [closed]

You are allowed to use free-standing blocks like this... var something = 1; { var something = 2; print("Inside: " + something); } print("Outside: " + something); This is from: ...
0
votes
1answer
148 views

Returning a JSON blob from jQuery.getJSON

I have a function where I'm making a call to a MVC controller that returns a JSON blob, with the contents of some back-end action. This JSON blob is being used to populate a table that is presented ...
0
votes
1answer
92 views

What types of scope exist in Javascript?

I understand that there is global scope, and additionally nestable functional scope. But are there any other types of scopes or closures in Javascript? While we're on the topic, what's the ...
10
votes
3answers
326 views

Lexical scope in Emacs: compatibility with older Emacsen

Emacs 24 added optional lexical bindings for local variables. I would like to use this functionality in my module, while maintaining compatibility with XEmacs and the previous Emacs versions. Before ...
3
votes
3answers
224 views

Emacs: the code in the body of a defun or defmacro cannot refer to surrounding lexical variables?

Lexical Binding - Emacs Lisp Manual has this paragraph: Note that functions like symbol-value, boundp, and set only retrieve or modify a variable's dynamic binding (i.e. the contents of its ...
1
vote
1answer
150 views

emacs lexical scoping and quoted variable name

I was experimenting with interplay between Emacs lexical scoping (new feature of Emacs 24) and add-to-list and found the interplay confusing and I don't know how to make sense of it. Here is a minimal ...
6
votes
3answers
142 views

lexically scoped pragmas

pragmas, like autodie, according to the docs, are lexically scoped. { use autodie; .. .. } # Can die here does this applies to all modules loaded with use? as far as I know, use is almost the same ...
2
votes
1answer
717 views

blocks don't see methods (chef resources)

Let's say we have two resources: template 'template1' do owner 'root' group 'root' end template 'template2' do owner 'root' group 'root' end I'd like to reuse code inside resources. ...
1
vote
4answers
303 views

Alpha conversion in lambda

Why is C# does not support alpha-conversion? int n = 3; int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; int oddNumbers = numbers.Count(n => n % 2 == 1); Console.Out.WriteLine("N value = " + n); ...
2
votes
3answers
49 views

JS Scoping issue

Consider the following piece of code: function processParagraph(paragraph) { if (paragraph.charAt(0) === '%') { for (var level = 0; paragraph.charAt(level) === '%'; level++) {} ...
5
votes
2answers
1k views

Referencing “this” inside setInterval/setTimeout within object prototype methods

Normally I'd assign an alternative "self" reference when referring to "this" within setInterval. Is it possible to accomplish something similar within the context of a prototype method? The following ...
3
votes
4answers
167 views

Trying to localize an outside package variable through a lexical binding in Perl

It's a long title, but I'm afraid I can't take a single word out without losing the true meaning of the question. I'll give a quick description of what I'm trying to achieve first, then a long ...
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 ...
1
vote
2answers
108 views

Reference counting problem with Perl 5.12.3?

It seems that it's cleaning up the pad too early: sub search { my ( $self, $test ) = @_; my $where; my $found = 0; my $counter = 0; $self->descend( pre_each => sub { ...
6
votes
1answer
837 views

Perl scoping and the life of local variables

How long does the memory location allocated by a local variable in Perl live for (both for arrays, hashes and scalars)? For instance: sub routine { my $foo = "bar"; return \$foo; } Can ...
1
vote
2answers
426 views

Something like let in Ruby

I used to write let-like expressions -- with lexical scope. So I write my own (sad, but it will fail with multiple threads): # Useful thing for replacing a value of # variable only for one block of ...
8
votes
6answers
531 views

JavaScript example question: lexical scoping/closure - Eloquent Javascript

So I'm new to programming and I'm trying to learn JS with the book Eloquent Javascript. So far so good, until I reached an example with the following code function makeAddFunction(amount) { ...
9
votes
2answers
468 views

Why are variables declared with “our” visible across files?

From the "our" perldoc: our has the same scoping rules as my, but does not necessarily create a variable. This means that variables declared with our should not be visible across files, because ...
6
votes
1answer
686 views

Does my $_; do anything if $_ is implied

I think the answer is yes but I just want to make sure. so if I have sub something { my $_; my @array = ...; while ( @array ) { say; } } is the my $_; actually effective at ...
6
votes
4answers
171 views

Lexically importing useful functions in a big script

Sometimes I need a useful utility function, like List::Util::max in the middle of a large program that does lots of stuff. So if I do use List::Util 'max'; At the top of my program, I'm stuck with ...
11
votes
5answers
1k views

How do you use “<<-” (scoping assignment) in R?

I just finished reading about scoping in the R intro, and am very curious about the <<- assignment. The manual showed one (very interesting) example for "<<-", which I feel I understood. ...
0
votes
8answers
1k views

C: Cannot declare pointer inside if statement

I have a pointer which points to a function. I would like to: if (mode == 0) { const unsigned char *packet = read_serial_packet(src, &len); } else { const unsigned char *packet = ...
5
votes
5answers
625 views

How is Lexical Scoping implemented?

A couple of years ago I started writing an interpreter for a little Domain Specific Language which included programmer-defined functions. At first I implemented variable scope using a simple stack ...
96
votes
6answers
14k views

What is lexical scope?

I want a brief intro to lexical scope
2
votes
5answers
370 views

Why are lexical scopes prefered by the compilers?

How does lexical scope help the compilers? Does it help in compilation or optimization?
18
votes
5answers
3k views

Dynamic and Lexical variables in Common Lisp

I am reading the book 'Practical Common Lisp' by Peter Seibel. In Chapter 6, "Variables" sections "Lexical Variables and Closures" and "Dynamic, a.k.a. Special, Variables". ...
5
votes
2answers
405 views

Why do I sometimes hear the term “lexical variable?”

I've seen the term "lexical variable" a few times, mostly in the context of closures. Paul Graham uses the term in his books on Lisp referring to variables defined using the let expression. I ...