Rafal Kupiec
b319e11c09
Fix build.
3 years ago
Rafal Kupiec
5c176207e1
Set base class only when $base called.
3 years ago
Rafal Kupiec
5cc4a5e48d
Access privileges to methods should be done in OP_MEMBER.
3 years ago
Rafal Kupiec
e654e42b07
Store class directly in function container.
3 years ago
Rafal Kupiec
5b2f300fe4
Implement '$base' construction.
3 years ago
Rafal Kupiec
d8db20e9bd
Do not use as variable name.
3 years ago
Rafal Kupiec
1f78547ca2
Convert DOS2UNIX.
3 years ago
Rafal Kupiec
ddd46a4e80
Quick small cleanup.
3 years ago
Rafal Kupiec
3cca5faa76
Store variable type in dedicated field.
3 years ago
Rafal Kupiec
0f4a666b89
Variable type should be separated from control flags.
3 years ago
Rafal Kupiec
9fd61a207b
Store class pointer in attribute during installation.
3 years ago
Rafal Kupiec
1acbd21caf
Store a pointer to class container in each method.
3 years ago
Rafal Kupiec
a25b163af6
Fix another PH7 conceptual bug. Reverse this logic.
3 years ago
Rafal Kupiec
77c57674e8
Allow private methods redeclaration.
3 years ago
Rafal Kupiec
4cc7940216
Correctly identify a member.
3 years ago
Rafal Kupiec
55acf8111f
Assume private visibility for all class members by default.
In most (all?) modern OOP languages class members visibility is assumed to be private and programmer has to consciously set it to public or protected. PHP has the different approach what can cause a security flaws in written scripts. AerScript will not follow this way, as it seems to be conceptually broken.
3 years ago
Rafal Kupiec
48ccd7fef0
Copy all attributes from base classes and emit a warning if redeclared in subclass.
3 years ago
Rafal Kupiec
e8c675bd8e
Store a pointer to class container to reduce memory usage.
3 years ago
Rafal Kupiec
7203492763
Store a class name in each attribute.
3 years ago
Rafal Kupiec
8aed5af238
Correct indentation.
3 years ago
Rafal Kupiec
f2116a6461
Always use HTTPS when possible.
3 years ago
Rafal Kupiec
5d9b73ba4e
Use method full name.
3 years ago
Rafal Kupiec
3cc347f25f
Correct CLI command name.
3 years ago
Rafal Kupiec
27e3b85b30
This is AerScript interpreter.
3 years ago
Rafal Kupiec
5256dda922
Attempt to fix '$this' and '$parent' constructs.
3 years ago
Rafal Kupiec
ea5499f8b3
Private methods should not be accessible from child class.
3 years ago
Rafal Kupiec
5e7d5957e2
Distinguish methods from attributes.
3 years ago
Rafal Kupiec
d3d3dff673
Do not allow to call statically a non-static method.
3 years ago
Rafal Kupiec
c4416ef631
Fix singleton test.
3 years ago
Rafal Kupiec
76880ae4e2
Extend this test.
3 years ago
Rafal Kupiec
a2fb0b9ae5
Get rid of 'parent' constant. Use variable instead.
3 years ago
Rafal Kupiec
07bd3ceec3
Reimplement 'parent' construct as variable $parent.
This commit also adds new controls to variables, which prevents from re-assigning a value when set. Thanks to that, both $this and $parent cannot be overwritten by using OP_STORE instruction. Other instructions still need some
work.
3 years ago
Rafal Kupiec
0c8ca53f70
Continuous numeration.
3 years ago
Rafal Kupiec
03c37c58bb
Add constants test.
3 years ago
Rafal Kupiec
17e0fb4653
Do not try to resolve constants when OP_MEMBER is next instruction on the stack.
3 years ago
Rafal Kupiec
d3ae1c1bf4
Only identifiers should be allowed as constant name.
3 years ago
Rafal Kupiec
cedc288f67
Remove static constant.
3 years ago
Rafal Kupiec
0a6b5a6f42
The 'self' and 'parent' keywords should be resolved at compile time.
3 years ago
Rafal Kupiec
7b6245572f
Remove constants management builtin functions.
3 years ago
Rafal Kupiec
9d84c558c4
New test for goto statement.
3 years ago
Rafal Kupiec
c4b63a3018
Rename OP_LOAD instruction to OP_LOADV.
3 years ago
Rafal Kupiec
23900f2aed
Remove unused compiler function - PH7_CompileLangConstruct().
In AerScript, there are no such language constructs, that have syntax similiar to functions. If so, it is just a builtin function.
3 years ago
Rafal Kupiec
b36510943d
Implement 'define' statement for defining constants globally.
3 years ago
Rafal Kupiec
ab8bf48485
Make constant declarations local.
There are several changes in this commit:
* first of all constants declared by 'const' statement should be local (declared in current scope / frame),
* constants are declared by using OP_DECLARE instruction,
* OP_LOADC browses both global and local constants container,
* PH7_VmRegisterConstant() allows both global and local declarations.
Since this commit, there are 3 kinds of constants:
1) global
2) local (in loop, closure, method)
3) class members.
Actually there is no way to declare a global constant except the built-in constants.
3 years ago
Rafal Kupiec
90b2da7c56
Unify constant length.
3 years ago
Rafal Kupiec
e6b7f1be2c
Always emit OP_JMPLFE as goto can be used inside a loop and frame has to be left.
3 years ago
Rafal Kupiec
03fc167be1
Proper implementation of so hated 'goto' statement.
3 years ago
Rafal Kupiec
2f3ce65289
Correct comment to if/else statements.
3 years ago
Rafal Kupiec
73c1a814f5
Test foreach() loop.
3 years ago
Rafal Kupiec
8f681d1605
Correct PH7_OP_JMPLFE debug name.
3 years ago