The lexical-scope tag has no wiki summary.
31
votes
6answers
5k views
11
votes
4answers
1k 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".
...
8
votes
2answers
282 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 ...
7
votes
1answer
249 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. ...
7
votes
6answers
297 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) {
...
6
votes
1answer
300 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
140 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 ...
5
votes
1answer
171 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 ...
5
votes
5answers
449 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. ...
5
votes
2answers
361 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 ...
4
votes
5answers
342 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 ...
3
votes
4answers
78 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 ...
2
votes
3answers
30 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++) {}
...
2
votes
2answers
109 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 ...
2
votes
1answer
173 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 ...
2
votes
5answers
273 views
Why are lexical scopes prefered by the compilers?
How does lexical scope help the compilers? Does it help in compilation or optimization?
1
vote
4answers
202 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);
...
1
vote
2answers
80 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 {
...
1
vote
2answers
223 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 ...
0
votes
8answers
664 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 = ...