The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
23 views

How do I denote this syntax's semantics?

I am writing a language specification, and I need the following rudimentary question resolved. Suppose I have the (admittedly contrived) abstract syntax: <A> ::= <B> | <C> ...
8
votes
2answers
276 views

PLT Redex: parameterizing a language definition

This is a problem that's been nagging at me for some time, and I wonder if anyone here can help. I have a PLT Redex model of a language called lambdaLVar that is more or less a garden-variety untyped ...
8
votes
2answers
126 views

Are denotational semantic mappings decidable?

Apologies for my poor expression of this question, I'm not sure I have the vocabulary to ask it appropriately. I've written (very recently) something akin to ⟦let x = x in x⟧ = ⊥ but really I'm ...
0
votes
1answer
77 views

adding variables/types to a typing environment

I have an environment which contains a set of tokens that I have already come across; when I look at a new token I want to add that token to the current environment. Basically I want to express a ...
5
votes
1answer
104 views

Formal semantics of CSS box positioning

I'm a (theoretical) computer science student, and as such the investigating of semantics of programming languages is one of the subjects of my study (wikipedia). I've played around a lot with CSS and ...
0
votes
0answers
45 views

how formal semantics be used in programming?

I know literal definition of formal semantics, and know some difference between formal semantics and informal ones. But I found that there're no general use of formal semantics in programming. ...
0
votes
2answers
97 views

The term “context” in programming languages and how context is affected by loading and updation?

What does the term context mean in context-free and context-sensitive languages? Can a variable have multiple contexts? If I need to store a particular value in a particular memory address how does ...
0
votes
0answers
148 views

Is there a rigorous definition of a software feature? [closed]

For example, is feature meaningfully different from component or module?
0
votes
0answers
61 views

Semantics types [closed]

I'm doing some research on this area, and I've seen Implicit, Informal (explicit) and Formal (for humans, for machines) semantics. What I don't understand is, what Powerful (soft) semantics are. Is it ...
8
votes
1answer
451 views

What are Gecko's Javascript interpreter engine semantics?

Edit In consideration of the answer response below regarding the reference ECMAScript Language Specification - 11.13.2 Compound Assignment Considering why these, javascript: o=""; o = o + ...
3
votes
4answers
270 views

Python: String manipulation of type String substitution in mathematical expression

Imagine something like exp(49/200)+(x-49/200) I want to pass as argument of the function "roundn" whatever operation that is not a addtion or a subtraction So my expresion became ...
0
votes
0answers
426 views

MATLAB: String manipulation of type String substitution in mathematical expression

Imagine something like exp(49/200)+(x-49/200) I want to pass as argument of the function "roundn" whatever operation that is not a addtion or a subtraction So my expresion became ...
4
votes
6answers
194 views

is there a Universal Model for languages?

Many programming languages share generic and even fairly universal features. For example, if you compared Java, VB6, .NET, PHP, Python, then you would find common functions such as control ...
4
votes
3answers
838 views

What is “formal semantics”?

I'm reading a very silly paper and it keeps on talking about how Giotto defines a "formal semantics". Giotto has a formal semantics that specifies the meaning of mode switches, of intertask ...