The scoping tag has no wiki summary.
7
votes
1answer
54 views
Any way to access function installed by makeActiveBinding?
The title basically says it all.
If I do this ...
makeActiveBinding("x", function() runif(2), .GlobalEnv)
x
# [1] 0.7332872 0.4707796
x
# [1] 0.5500310 0.5013099
... is there then any way for me ...
1
vote
1answer
112 views
Issue with child scoping of this in Typescript
This is ALMOST the same as every other this scoping question I have read so far other than one slight difference which makes it relevant (imo) to ask this question.
Now originally my problem was ...
0
votes
2answers
31 views
How do I access other methods from within an event function?
I'm starting to learn more about jQuery plugin patterns, but I've run into something. See code below. I want to access my plugins options/defaults from with an onclick function, but I'm not sure how.
...
1
vote
2answers
67 views
dealing with javascript scoping using inline functions
Because I'm used to C and Java, I've found Javascript's lack of block scope a little irksome. Sometimes I find myself wanting to declare and then immediately execute an inline function just to ...
1
vote
2answers
60 views
How to reset ruby class accessors between requests?
I'm working on ecommerce solution, which provides few different shops within a single rails application.
There I have a class to hold shop-specific settings.
# models/shop.rb
class Shop < ...
0
votes
2answers
36 views
JavaScript scoping not assign variable
I'm writing a function in JS, but I have a problem with the variabile marker.
The code:
function piano(numero, link) {
var marker;
this.marker = marker;
var ...
2
votes
2answers
78 views
JavaScript local scoping: var vs. this
I can't seem to get my head around a specific case of scoping for JavaScript variables. Different from other examples and questions I have found, I am interested in the scoping for nested functions.
...
0
votes
2answers
51 views
Include source code to function from external file in R
I have a standard data analysis procedure that I need to run on various (~50 datasets). I have been developing it for some time and now I got to the point where I would like to turn it into a function ...
4
votes
3answers
85 views
Scheme Scoping (define and let)
So I know that in Scheme define is for dynamic scoping and let for static scoping, yet the following thing confuses me:
If I have
(let ((x 0))
(define f (lambda () x))
(display (f))
(let ((x ...
2
votes
1answer
62 views
Scoping rules for variables initialized in a for loop [duplicate]
Possible Duplicate:
Javascript closure inside loops - simple practical example
I'm playing around with setTimeout in a project of mine in order to throttle the adding of elements to the DOM ...
1
vote
2answers
60 views
JavaScript Scoping - Passing callback to already defined function
The title is a bit weird, don't quite know the best way to explain it in a sentence...
At present there is an object with 3 functions; func, funcSuccess, and funcFailure. func contains a jQuery ajax ...
2
votes
1answer
51 views
How to reference an object instance in callable decorator object with python?
Context:
I'd like to be able to decorate functions so that I can track their stats. Using this post as a reference I went about trying to make my own callable decorator objects.
Here is what I ...
0
votes
1answer
110 views
Xtext DSL grammar scoping customization
I know there is a simple solution for this but I have no idea how to implement it.
I'm looking for how to implement the answer rather than what I need to do. Half the answer is already on this page:
...
0
votes
2answers
40 views
Weird scope behavior in node or am I sleeping?
My js is as follows,
/*
* GET home page.
*/
var MongoClient = require('mongodb');
exports.index = function(req, res){
var studentObj = {};
...
0
votes
1answer
29 views
getting nil:NilClass when scoping dates in Rails
I'm a bit dumfounded - getting an 'undefined method `each' for nil:NilClass' error.
I've created a pretty straight-forward scope in the model
def self.just_added
where('created_at > ?', ...
0
votes
3answers
56 views
Python decorator function scoping
I can't seem to figure out whey the code below does not expose demovar to the decorated function:
def exposebasevar(function):
def decorator(*args, **kwargs):
demovar = 'Where am I?' # ...
0
votes
1answer
80 views
Is it possible to see variable scope of just called function in Python?
I have rather strange question about function variable scope and return.
Is there any way to inspect the scope of called function in the caller after called function returns value?
Use case is ...
1
vote
2answers
291 views
Accessing Rails Controller instance variables in CSS
So I've seen lots of discussion on SO about using erb in your CSS files. I can get ERB to process the CSS files by using the <%= %> syntax and adding .erb to the file, but what I really need is to ...
0
votes
1answer
64 views
Xtext: Scope method not execute?
I've got this IScope method:
IScope scope_Assignment(AssignmentOrFBCall a, EReference ref){
System.out.println(a.toString());
return IScope.NULLSCOPE;
}
but it doesn't produce any results. ...
0
votes
2answers
89 views
What will be the output of the following C++ program assuming dynamic scoping? [closed]
What will be the output of the following C++ program assuming dynamic scoping?
I have turboc++ compiler in which the output shown is using static scoping and the answer is as follows:
8
6
50
Now, my ...
1
vote
6answers
108 views
Reasons for putting C/C++ variables in an unnamed scope? [duplicate]
Possible Duplicate:
Can I use blocks to manage scope of variables in C++?
I came across some C++ code that resembled:
int main(void) {
int foo;
float qux;
/* do some stuff */
{
...
6
votes
1answer
68 views
Python scoping in dict comprehension
>>> x = 'foo'
>>> {0: locals().get('x')}
{0: 'foo'}
>>> {0: locals().get('x' + spam) for spam in ['']}
{0: None}
What is the reason for this discrepancy in behaviour?
1
vote
1answer
56 views
Model fitting functions and environemnts
Here is a kind of minimal example for a problem I stumbled upon:
mylm <- function(formula,data,subset=NULL){
mysubset <- subset # some other clever manipulation
lm(formula,data,mysubset)
}
...
1
vote
1answer
67 views
JavaScript Best Practices for Scoping Event Handlers
I'm a Flash developer turned UX developer. When writing event handler functions within a namespace object or class, I'm trying to figure out what the best practice would be?
I don't like it when I ...
1
vote
0answers
108 views
Scope Chaining in Mongoid 2.2 with Rails 3.0.9 and Ruby 1.8.7
Hi I have application running on Ruby 1.8.7 (i am presently not in a position to update this to 1.9.2) and Rails 3.0.9 running mongoid 2.2.2.
I have a couple of named scopes which I have defined as ...
-6
votes
4answers
74 views
Scoping in javascript [closed]
<html>
<head>
<title></title>
<script type="text/javascript">
var a = 1;
function b() {
a = 10;
return;
function a() {}
}
</script>
...
0
votes
2answers
41 views
When creating a new object why does it update the old one?
When i create a new object from an existing object, then append a new attribute, why does it update the earlier one?
Is their a solution that does not involve changing my code much?
Here is my ...
5
votes
2answers
89 views
Code style - 'hiding' functions inside other functions
Recently I've been doing things like this:
import Tkinter
class C(object):
def __init__(self):
self.root = Tkinter.Tk()
def f():
print 'hello'
self.button = ...
1
vote
2answers
77 views
CoffeeScript Adding object to an array
I have the following code:
class Number
number = null
constructor: (num) ->
number = num
getNumber: -> number
class Sequence
numbers = []
constructor: ->
addNumber: (n) ->
...
2
votes
3answers
113 views
Initialized in a function and is not initialized in main
I am trying to allocate memory in a function and I am not sure what I am doing wrong.
I want this:
int main()
{
int* test= 0;
initialize(test, 10);
int test2 = test[2];
delete[] test;
...
1
vote
1answer
52 views
Scoping issue - Is this function forming a closure - JavaScript?
Throughout my script I am calling the function dynamo.toolbox.add_temp_button. An example of this is here:
if(page < total_pages){
dynamo.toolbox.add_temp_button("Next Page",function(){
...
0
votes
2answers
137 views
Variable scoping of “for i in range(XX)” in Python
This is a exercise for Python, and I am confused about the variable scoping in Python.
"Return True if the given string contains an appearance of "xyz" where
the xyz is not directly preceeded by ...
0
votes
0answers
90 views
Access key scoping in WPF?
I have my XAML as follows,
<Grid Background="Yellow" AccessKeyManager.AccessKeyPressed="OnKeyPressed">
<StackPanel Margin="5" Background="Red" x:Name="stack1">
...
0
votes
5answers
207 views
Exposing objects through properties in C#
I want to write a static utility class which only has a set of properties, which expose functionality to the user
For example I could call:
Utils.String.GetHexString("Hello World");
or
...
0
votes
1answer
548 views
Xtext cross referencing and scoping
I have some problems with xtext cross referencing
Here is a very simple grammer:
grammar org.xtext.example.mydsl1.Test with org.eclipse.xtext.common.Terminals
generate test ...
2
votes
1answer
77 views
Why is this Javascript setInterval with object calling function not evaluating the inner parameter when passing in a callback?
The following script outputs 1 2 3 4 5 6 7.. I would assume it would output 0 1 2 3 4 5 ...
In fact, in my actual code I believe the print(lostCnt) always is connected to the latest (acting like a ...
0
votes
1answer
179 views
Python global variable not accessible inside 2nd scope level of a function [duplicate]
Possible Duplicate:
Python variable assigned by an outside module is accessible for printing but not for assignment in the target module
Generally thinking about the scoping rules from ...
1
vote
1answer
69 views
Strange fold scoping issue
I ran into this head scratcher while debugging a transactional query block.
For some reason, despite the connection rollback occurring in the fold left/fail operation, success/right outcomes were ...
6
votes
4answers
199 views
double as true / false
Bjarne suggests using the condition in if's as scope restriction. In particular this example.
if ( double d = fd() ) {
// d in scope here...
}
I'm curios how to interpret the declaration in a ...
16
votes
1answer
214 views
How can a non-imported method in a not-attached package be found by calls to functions not having it in their namespace?
An R namespace acts as the immediate environment for all functions in its associated package. In other words, when function bar() from package foo calls another function, the R evaluator first ...
4
votes
1answer
724 views
backbone.js Model.get() returns undefined, scope using coffeescript + coffee toaster?
I'm writing an app using coffeescript with coffee toaster (an awesome NPM module for stitching) that builds my app.js file.
Lots of my application classes and templates require info about the ...
0
votes
3answers
128 views
Why is my jQuery variable empty?
I am new to jQuery and I ran into a problem that is probably easy to spot for most of the frontend gurus out here.
I created the following script
$(document).ready(function() {
...
0
votes
2answers
52 views
Scoping Issue: value is lost
I am trying to return a JSON object from a method (pollServiceForInfo), but it seems to get "lost" when I alert it once the method has finished. I know this is a scoping issue, however I am stumped ...
2
votes
4answers
953 views
C++ - Access private members of class from outside the class
I'd like to know if there's any way to access a private member of a class from outside the class. I'll explain my problem.
I have a .hpp file which contains the definition of the class along with its ...
2
votes
1answer
147 views
adding a scope to ActiveRecord::Base via initializer?
I've tried to add a scope like this, via an initializer
class ActiveRecord::Base
scope :this_month, lambda { where(:created_at => Time.now.beginning_of_month..Time.now.end_of_month) }
...
1
vote
1answer
305 views
internet explorer 9 & javascript variable scoping issue
this code works in Chrome & Firefox but not in IE9 ... need some hints ...
var obj = {
data: [],
json: function() {
var self = this;
$.getJSON("highscore.json", ...
1
vote
1answer
151 views
How to have a different value in a variable per each different instance of a form?
i got a mdi form which display contact address. Since it is Mdi, i could open multiple copies of the form.
However, apparently the variables used gets "copied" accross the forms. Therefore in the ...
7
votes
2answers
180 views
What are the distinctions between lexical and static scoping?
In R programing for those coming from other languages John Cook says that
R uses lexical scoping while S-PLUS uses static scope. The difference can be subtle, particularly when using closures.
I ...
1
vote
1answer
48 views
Is it possible to explicitly access instance members of a nested class's containing class?
Is there a keyword in java to allow explicit invocation of members of the containing instance (or of its superclass) from within a nested class?
SCENARIO
public class Superclass {
public void ...
0
votes
1answer
203 views
Javascript lambda scoping and code factoring
I want to create a simple to use API into some of these functions but with out being able to bind a function into a new scope I.E the scope it belongs in! I can not figure out a way to do it other ...