The redeclaration tag has no wiki summary.
5
votes
1answer
106 views
JavaScript eval() and const
I just stumbled upon a strange JavaScript error using Mozilla Rhino as a JavaScript engine.
This one line script throws an error:
eval("const a = 5;");
The error is:
TypeError: redeclaration of ...
1
vote
2answers
136 views
Does PHP sometimes ignore function redeclarations?
I am working on a website with a few friends, and recently, users have complained about a fairly important feature doing nothing but return a blank page. This only happens for some users, while other ...
9
votes
2answers
860 views
Property Declaration - ivar and getter values don't match
I have a doubt regarding property redeclaration
Overview:
class "A" is the parent class with a readonly property int n1;
class "B" is the subclass, which redeclares the property as read write
using ...
1
vote
1answer
567 views
Readonly public property redeclared as readwrite in private interface.. understanding a bit more
I've read the Property redeclaration chapter in The Objective-C Programming Language document and I'd like if some of you can clarify me the following property redeclaration:
// MyObject.h public ...
2
votes
2answers
739 views
redeclaration of instance and static function
class me {
private $name;
public function __construct($name) { $this->name = $name; }
public function work() {
return "You are working as ". $this->name;
}
public static ...
1
vote
1answer
772 views
redeclaration of var console
I'm using Hoptoad to get error reports of my JavaScript and recently I got this error:
redeclaration of var console
the backtrace is not very useful:
internal: :
:0:in `{anonymous}()'
and I ...
0
votes
1answer
749 views
How to set Eclipse gcc compiler to ignore specific errors or change from error to warning
I need to build a project consisting of many C source and header files. The project compiles in xcode with warnings (which is fine) but when I try to compile it using the GNU gcc C compiler in Eclipse ...
2
votes
1answer
242 views
C++ multiple declarations in a local scope
As far as I know, in C++ one can declare the same name multiple times, as far as it has the same type in all these declarations. To declare an object of type int, but NOT define it, the extern keyword ...
8
votes
10answers
6k views
Is it possible to overwrite a function in PHP
Can you declare a function like this...
function ihatefooexamples(){
return "boo-foo!";
};
And then redeclare it somewhat like this...
if ($_GET['foolevel'] == 10){
function ...
2
votes
5answers
627 views
Fatal error: Cannot redeclare happening on same line
I have been fighting with this error for a while. The error is somewhere in the function I now have php telling me it can't redeclare a variable on the same line... strange. Any help would be great.
...
5
votes
3answers
2k views
PHP autoloading: Preventing 'cannot redeclare <class>' in all constellations?
Question
Is there a way I can make PHP ignore re-declarations of classes rather than barf up a FATAL ERROR? Or at least throw an exception? (I could easily catch it then and proceed (as well a log ...
5
votes
4answers
755 views
C++ inheritance: scoping and visibility of members
Can you explain why this is not allowed,
#include <stdio.h>
class B {
private:
int a;
public:
int a;
};
int main() {
return 0;
}
while this is?
#include <stdio.h>
class ...
3
votes
8answers
1k views
is there any Advantage of redeclaring javascript variables?
i am new to Javascript.
<html>
<body>
<script type="text/javascript">
var x=5;
document.write(x);
document.write("<br />");
var x
document.write(x);
</script>
...