The language-specifications tag has no wiki summary.
1
vote
1answer
28 views
Gedit Online Language Specs Generator
Is there a online generator, or something like that, of new highlightings for gedit?
I am using a not known language and I would like to have syntax highlight, but it seems like too complicated and I ...
0
votes
0answers
30 views
Definition of an abstract DATA type
Can we use "if then else" in algebraic specification?
for example i want to use this operation
existe : List X elem -> BOOL
and i have 2 Constructor
- newSet : -> List
- Insert ...
1
vote
1answer
56 views
ACSL specification for a possibly infinite C function
I am trying to specify the behavior of external functions, more precisely, their termination. The ACSL documentation says that the \terminates p; property specifies that if the predicate p holds, then ...
0
votes
3answers
86 views
Why does an extension method bypass the need for explicit conversion?
I have an explicit conversion setup between two reference types.
class Car
{
public void Foo(Car car)
{
}
public static explicit operator Bike(Car car)
{
return new ...
6
votes
3answers
224 views
runtime type vs compile-time type method invocation
The C# 4.0 specs read:
When a virtual method is invoked, the runtime type of the instance for
which that invocation takes place determines the actual method
implementation to invoke. In a ...
16
votes
1answer
4k views
C# 5 language specification
C# 5.0 is out now since August 2012. Where can I find the specification? They've stopped doing ECMA specs, but how about msdn?
4
votes
2answers
132 views
When can a generic parameter never be null
In a generic GetHashCode(T foo) method, I check whether foo is null.
However I just stumbled upon a strange Resharper warning.
In the following code, can foo never be null?
private class ...
2
votes
1answer
59 views
Semantics of bool fields in explicit layout types (ECMA-334)
I'm trying to find where in ECMA-334 (C# language specification) the following behavior is defined. The source program is as follows.
static void Main(string[] args)
{
TestStruct a = new ...
3
votes
1answer
281 views
How is foreach implemented in C#?
How exactly is foreach implemented in C#?
I imagine a part of it looking like:
var enumerator = TInput.GetEnumerator();
while(enumerator.MoveNext())
{
// do some stuff here
}
However I'm unsure ...
3
votes
1answer
254 views
F# Specification Symbolic Operator VS Symbolic Keyword
I am reading in the F# specification - the most recent one that I could find, found here - in an effort to learn the language in what is arguably the hard way. In section "3.6 Symbolic Keywords," the ...
13
votes
4answers
762 views
++i operator difference in C# and C++
I have the following code written in both C++ and C#
int i=0;
++i = 11;
After this C# compiler brings an error
The left-hand side of an assignment must be a variable, property or indexer
But ...
13
votes
2answers
910 views
Why is it not allowed in Java to overload Foo(Object…) with Foo(Object[])?
I was wondering why it is not allowed in Java to overload Foo(Object[] args) with Foo(Object... args), though they are used in a different way?
Foo(Object[] args){}
is used like:
Foo(new ...
5
votes
4answers
2k views
Why does C# not allow generic properties?
I was wondering why I can not have generic property in non-generic class the way I can have generic methods. I.e.:
public interface TestClass
{
IEnumerable<T> GetAllBy<T>(); //this ...
6
votes
1answer
410 views
Objective-C 2.0 ABI specification
Does documentation for the Objective-C 2.0 ABI exist somewhere on the Internet? The release notes for objc4-493.9 say:
Forthcoming documentation will describe the ABI for the use of compilers and ...
-1
votes
2answers
211 views
Question on object lifetime : N3242 Draft
A point from C++11 n3242 "Duration of subobjects, object lifetime", 3.8/1:
The lifetime of an object is a runtime property of the object. An object is said
to have non-trivial initialization if ...
2
votes
3answers
261 views
Can this be legally be done in C++?
Note: the following code is illegal, but a conforming compiler is not required to reject it (and some don't).
In a library I'm working with I have a template function declaration for Foo and a ...
4
votes
3answers
1k views
Why is this C++ explicit template specialization code illegal?
(Note: I know how it is illegal, I'm looking for the reason that the language make it so.)
template<class c> void Foo(); // Note: no generic version, here or anywhere.
int main(){
...
22
votes
5answers
6k views
Format for 'short', 'long', and 'int' literal in C#?
I'm not sure what the proper name for this is, it's so hard to google:
In C, C++, etc. you can tell the compiler that a literal number is not what it appears to be (, that is, X, float instead of ...
6
votes
4answers
584 views
Operator '==' can't be applied to type T?
I thought this method was valid but I was wrong:
static void Equals<T>(T x, T y)
{
return x == y; //operator == can't be applied to type T
}
After reading the specifiation (§7.2.4 in ...
12
votes
5answers
611 views
Has the C# spec (team? committee?) ever considered this object creation syntax?
I've never posted a question of this nature before, so if it's not proper for SO, just don't hurt my feelings too bad and I'll delete it.
In the interest of keeping everything I care about as close ...
3
votes
3answers
132 views
C# language specification “Program Instantiation” appears to be mis-identified
In the C# language specification a Program is defined as
Program the input to the compiler.
While an Application is defined as
Application an assembly that has an entry point
But, they ...
6
votes
1answer
232 views
Where is it specified whether Unicode identifiers should be allowed in a Haskell implementation?
I wanted to write some educational code in Haskell with Unicode characters (non-Latin) in the identifiers. (So that the identifiers look nice and natural for speakers of a natural language other than ...
21
votes
3answers
699 views
Why does C# define two different uses for `using`?
More a question out of curiosity than anything, but why does C# define two different "purposes" for the keyword using? On one hand, it's a directive...
used to create an alias for a
namespace ...
4
votes
4answers
329 views
C language semantic specification
Wikipidea says that Perl has a dominant implementation that is used as a reference for its specification ,while C language is specified by the standard ANSI ISO.
I learnt C language without reading ...
4
votes
2answers
1k views
Blogger template language specifications
Is there somewhere google published the official blogger template language specifications? I read this question and it provided a lot of useful information, but it didn't provide me with help on a ...
1
vote
2answers
3k views
What is difference between == and === in javascript? [duplicate]
Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
Hi folks,
I'm reading about javascript a lot now and I noticed one strange thing for me. ...
13
votes
3answers
6k views
What exactly is the HTML5 <command> tag and what is the browser support
I've read the HTML5 spec for <command> and found the information on this element very vague.
I've tried it out and found that it is not working in Chrome (latest version) and it is working on ...
1
vote
5answers
107 views
Are compilers and language specification/grammars the same?
Can a compiler be written, from which you can not reverse engineer the grammar and meaning of the input language.
i.e. can you always get the specification of the language from the compiler?
Let's ...
5
votes
2answers
847 views
Inside a while loop, is the last comma separated statement guaranteed to run last?
Consider the following (trivial) code segment:
while (i++, i <= 10) {
// some more code
}
In the general case, C++ allows comma separated statements to be evaluated in any order. In the case ...
10
votes
4answers
556 views
Question regarding implicit conversions in the C# language specification
Section 6.1 Implicit conversions defines an identity conversion thusly:
An identity conversion converts from any type to the same type. This conversion exists such that an entity that already has ...
58
votes
1answer
801 views
Problem understanding C# type inference as described in the language specification
The C# language specification describes type inference in Section §7.5.2. There is a detail in it that I don’t understand. Consider the following case:
// declaration
void Method<T>(T obj, ...
6
votes
1answer
481 views
Is the F# language reference documentation available in an offline format (PDF, CHM)?
I've found several posts on hubFS of people asking if there is, or will be, offline documentation for F#. These posts haven't been answered. So I want to give it a shot and ask the same question here ...
2
votes
2answers
805 views
XSD doesn't allow me to have unbounded inside all indicator
I'm trying to make unordered list of variables in var1 occurs twice and var2 occurs infinite times (Use case in my project is different). The element does not allow me to use maxOccurs.
Is there ...
5
votes
3answers
582 views
C# 'dynamic' keyword… is it really a RESERVED keyword or just a identifier that means something special when used as type?
I have a C# 4.0 parser. It accepts 'dynamic' as a keyword as a type. My parser trips over
statements found in working C# 3.0 programs of the form of:
dynamic = <exp> ;
So, it dynamic really ...
1
vote
8answers
158 views
Why don't statements that don't do anything throw an exception (or warn the developer)?
I've been bitten a couple of times by statements in VB.NET (not sure if this effect exists in C#) that appear to be self-referencing, but when they're executed, they don't actually do anything because ...
3
votes
2answers
513 views
Syntax (probably BNF) spec of VBA ?
I have to maintain a portion of Access 2003 VBA code, which is not my primary programming language, and while I'm pretty solid on doing regular stuff, I would still like to have a pure spec of the ...
62
votes
10answers
29k views
C# Language Speculation 4.5 / 5.0 [closed]
What have you heard about the next version of the C# language specification after 4.0?
This is not intended to be a wishlist of features, only items that have been discussed as possibly being ...
7
votes
7answers
441 views
Questions about Structs
MSDN says that a class that would be 16 bytes or less would be better handled as a struct [citation].
Why is that?
Does that mean that if a struct is over 16 bytes it's less efficient than a class or ...
