diff options
author | Eduardo Julian | 2017-07-22 18:09:53 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-07-22 18:09:53 -0400 |
commit | a878ffc5f8d71848db3f400bc3ebd40176c19973 (patch) | |
tree | ac106d1c9c8548d4dae2a60bd971402e598626f4 /stdlib/source | |
parent | 607904a5238ecfcf7761143207ca41e082a12aa8 (diff) |
- Changed inheritance syntax for interfaces and classes to make it more homogeneous.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/paradigm/object/inheritance.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/paradigm/object/inheritance.lux b/stdlib/source/lux/paradigm/object/inheritance.lux index 9b384fd1d..d3eef515d 100644 --- a/stdlib/source/lux/paradigm/object/inheritance.lux +++ b/stdlib/source/lux/paradigm/object/inheritance.lux @@ -104,6 +104,6 @@ (|> reference (p;after (s;this (' <keyword>)))))] - [extension #extends] - [inheritance #inherits] + [extension #super] + [inheritance #super] ) |