Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - serodya

Pages: [1]
1
Not sure if this can help you

Tagged Value Type = Spin

Type=Spin;
LowerBound=x;
UpperBound=y;
Default=Val;

Enables creation of a spin control with the value of LowerBound being the lowest value and UpperBound being the highest value. You can also set a default within that range.

Reference: "4 Tagged Value Types" page 81 in http://www.sparxsystems.com/downloads/resources/booklets/enterprise_architect_sdk.pdf

2
Automation Interface, Add-Ins and Tools / Javascript Ecma-262 Grammar
« on: April 15, 2016, 11:45:20 pm »
Hello,

I am writing a grammar for JavaScript Ecma-262, so does someone know how to translate the following [lookahead ∉ <DecimalDigit>] into EBNF? look at the below example:

<EscapeSequence>    ::= <CharacterEscapeSequence> |
                                          "0" [lookahead ∉ DecimalDigit] |
                                         <HexEscapeSequence> |
                                         <UnicodeEscapeSequence>;

I guess it is: "0" skip(<DecimalDigit>)

The above excerpt is in the page 129 in http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf

Thank you!!

Pages: [1]