0
votes
1answer
37 views
Why does EcmaScript 5 strict mode go to such great lengths to restrict the identifier `eval`
According to the spec (Annex C), strict-mode code can't do pretty much anything that might assign any identifier with the name eval. I can understand that one might want to restrict use of the …
0
votes
1answer
38 views
IE8 Json problem
I'm facing very strange issue, I'm getting JSON object from django powered site and excuting it using eval(). It works on all the other browsers except all versions of IE. in IE, I am getting …
2
votes
3answers
115 views
How can I dynamically include Perl modules without using eval?
Hi,
I need to dynamically include a Perl module, but if possible would like to stay away from eval due to work coding standards. This works:
$module = "My::module";
eval("use $module;");
But I …
0
votes
1answer
6 views
Substitute for eval() for using LiveValidation constructor
Hi.
I'm using LiveValidation for input elements. These come in a table retrieved with an AJAX call, and can be multiples of 4, anywhere between 4 and 36.
I'm using eval to call the constructor for …
0
votes
3answers
34 views
trying to find a file/line for: .(eval):289: warning: don’t put space before argument parentheses
So, I get this warning when I'm running my tests in ruby/RoR
.(eval):289: warning: don't put space before argument parentheses
I've checked every where (but obvoiusly not) and I can't find the …
2
votes
7answers
144 views
When is `eval` in Ruby justified
Another question inspired this one:
Mostly everybody agrees that eval is bad, and in most cases there is more elegant / safer replacement.
So I wanted to ask: if eval is misused that often, is it …
2
votes
2answers
85 views
Compile a string to Ruby bytecode for better performance — like compile() in Python
I have a string (authenticated, trusted, etc.) containing source code intended to run within a Ruby loop, quickly. In Python, I would compile the string into an abstract syntax tree and eval() or …
0
votes
1answer
46 views
Calling a function by a string in JavaScript and staying in scope
Hi, I've been playing around and searching a bit, but I can't figure this out. I have a pseudo private function within a JavaScript object that needs to get called via eval (because the name of the …
1
vote
1answer
39 views
How do you know to use Container.DataItem when data binding in ASP.NET? Is there a reference?
Is there a reference for data binding? I've seen a bunch of different ways to data bind things, but I've never found a reference. Is there one?
I know there are Bind and Eval, but when does …
1
vote
3answers
55 views
How to disable eval function without going to php.ini file?
Hello All,
Is there a way to disable eval function without doing so from php.ini file.
I have tried ini_set function but even that doesn't work.
Basically I want my framework users to decide whether …
0
votes
0answers
28 views
JSON eval problem
I have an ASP.net website running on two different machines, one with a Vista OS and the other with Windows Server 2003. I am using jQuery to make an AJAX call to a web method in the code-behind, …
0
votes
3answers
58 views
javascript eval
eval('({"suc":true})')
The above is wrong,should be:
eval('{"suc":true}')
Why?
0
votes
3answers
61 views
PHP: How to return an instantiated class object, given a class name?
They say that eval() is evil. I want to avoid the use of the eval() line using proper PHP5 functionality. Given a class name in a static class method, how do I make it return a real object?
class …
0
votes
4answers
33 views
Eval script for server side control’s ID property?
Using the following Eval script for setting ID property causes error.
Error message: the server tag is not well formed.
<asp:Panel runat="server" ID="<%# Eval("RENTER_ID") %>" …
0
votes
2answers
45 views
Javascript eval results in “undefined function” but works in Firebug
I'm wondering why when I call: eval("myFunc(1,2,3)") in the Firebug console on a rendered page, the function executes properly, but when I call the same eval within by javascript within then page, I …
