0
votes
1answer
12 views
Literal structure for time datatype
I'm working on a DSL that should support a time literal and am interested in two different things:
What language(s) or DSL(s) support a time literal?
How is the literal structure …
0
votes
1answer
71 views
Trouble displaying MS Word html file in Asp.Net Literal Control
When I display an html file that was created in MS Word, it doesn't render correctly in the ASP Literal control. It seems to have trouble showing tabs, dashes, bullets, etc. Is t …
7
votes
2answers
284 views
Japanese COBOL Code: rules for G literals and identifiers?
We are processing IBMEnterprise Japanese COBOL source code.
The rules that describe exactly what is allowed in G type literals,
and what are allowed for identifiers are unclear.
…
0
votes
2answers
728 views
Javascript - Replacing the escape character in a string literal
Hi everyone,
I am trying to replace the backslash (escape) character in a Javascript string literal.
I need to replace it with a double backslash so that I can then do a redirec …
1
vote
6answers
174 views
How to type cast a literal in C
Hi,
I have a small sample function:
#define VALUE 0
int test(unsigned char x) {
if (x>=VALUE)
return 0;
else
return 1;
}
My compiler warns me that the compariso …
0
votes
2answers
533 views
What is array literal notation in javascript and when should you use it?
JSLint is giving me this error:
Problem at line 11 character 33: Use the array literal notation [].
var myArray = new Array();
What is array literal notation and why does it wan …
2
votes
3answers
124 views
When should you use === vs ==, !== vs !=, etc.. in javascript? [closed]
Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
What are the differences between === and ==, !== and ==... when should …
5
votes
5answers
380 views
Letters within integers. What are they?
This is an excerpt of code from a class I am working with in Java (below). Obviously the code is defining a static variable named EPSILON with the data type double. What I don't un …
0
votes
5answers
52 views
Filling multiple literals with the same value
Hello,
I have multiple literals on a page. For example,
<asp:Literal id="Label1" runat="server" />
I have around 10 of these on one page and want to fill them all with t …
0
votes
3answers
269 views
Null literal issue
Hi Guys,
I have a repeater that should show a bound field value only if it exists. Having read this post I decided to do it by using a literal within my repeater and using the OnI …
1
vote
3answers
300 views
Why can I assign an existing reference to a literal value in C++?
Consider the following:
int ival = 1.01;
int &rval = 1.01; // error: non-const reference to a const value.
int &rval = ival;
rval = 1.01;
The first assignment of &r …
