plantcode icon indicating copy to clipboard operation
plantcode copied to clipboard

Richer class names and introduction of "classtypes"

Open HelloLudger opened this issue 4 years ago • 1 comments

Currently the system is VERY restricted about which classnames are allowed. This will allow a lot of characters and allows to have the classname in quotes:

image

class someclass {}
class §$noQuotes|_:;~#!§$()[]+-*\/,| {}
class "inQuotes" {}
class "AZaz09 |_:;~#!§$()[]+-*\/,{}|" {}

HelloLudger avatar Oct 13 '20 18:10 HelloLudger

"class types" image

class "withDescr1" <<something>>
class "withDescr2" <<some { } thing>> {
}

becomes

class withDescr1
# was typed as <<something>>

class withDescr2
# was typed as <<some { } thing>>

HelloLudger avatar Oct 13 '20 19:10 HelloLudger