Skip to content
This repository has been archived by the owner on Jun 20, 2021. It is now read-only.

Commit

Permalink
Merge pull request #36 from Youngestdev/master
Browse files Browse the repository at this point in the history
Updated module call : elbmag
  • Loading branch information
Thecarisma authored Sep 24, 2018
2 parents 87d7753 + 229f951 commit c2111ce
Show file tree
Hide file tree
Showing 63 changed files with 94 additions and 93 deletions.
3 changes: 2 additions & 1 deletion modules/archive/loadarchiver.sim
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module archive

call "simple/core/DynamicLoader.sim" ? simple.core
call simple.core.DynamicLoader
callModule("archiver")
4 changes: 2 additions & 2 deletions modules/archive/zip/Zip.sim
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

module archive.zip

call "archive/loadarchiver.sim"
call "archive/zip/ZipMode.sim"
call archive.loadarchiver
call archive.zip.ZipMode

#to check if param is a Zip object
block isZipStream(zipStream)
Expand Down
2 changes: 1 addition & 1 deletion modules/archive/zip/ZipEntry.sim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

module archive.zip

call "archive/zip/Zip.sim"
call archive.zip.Zip

class ZipEntry

Expand Down
2 changes: 1 addition & 1 deletion modules/archive/zip/ZipMode.sim
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

module archive.zip

call "archiver/loadarchiver.sim"
call archiver.loadarchiver

#zip mode for writing into the zip archive
ZIP_WRITE = "w"
Expand Down
1 change: 1 addition & 0 deletions modules/fulltick/all.sim
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module fulltick

#groups/windows
call "./widget/FGroup.sim"
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/core/Core.sim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

module fulltick.core

call "simple/core/DynamicLoader.sim" ? simple.core
call simple.core.DynamicLoader
callModule("fulltick")

PLASTIC_SCHEME = "plastic"
Expand Down
2 changes: 2 additions & 0 deletions modules/fulltick/drawing/FCaretStyle.sim
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

*/

module fulltick.drawing

/* NUMBERS */

#@Skip DO NOT MODIFY @EndSkip ############################################
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/drawing/FFont.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module fulltick.drawing

#@Call the @Class Throw for the debugging
#@Call the @Class BaseFields to access the predeclared variable and blocks
call "simple/debugging/Throw.sim"
call simple.debugging.Throw
#call "simple/core/BaseFields.sim"

#Declare a variable of same @Class FFont name to allow blocks access
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/painting/FColor.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module fulltick.painting

#@Call the @Class Throw for the debugging
#@Call the @Class BaseFields to access the predeclared variable and blocks
call "simple/debugging/Throw.sim"
call simple.debugging.Throw
#call "simple/core/BaseFields.sim"

#Declare a variable of same @Class FColor name to allow blocks access
Expand Down
2 changes: 2 additions & 0 deletions modules/fulltick/raw/FBoxType.sim
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

*/

module fulltick.raw

/* NUMBERS */

#@Skip DO NOT MODIFY @EndSkip ################################
Expand Down
2 changes: 2 additions & 0 deletions modules/fulltick/raw/FBrowserSelection.sim
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

*/

module fulltick.raw

/* NUMBERS */

#@Skip DO NOT MODIFY @EndSkip ####################################
Expand Down
2 changes: 2 additions & 0 deletions modules/fulltick/raw/FMenuType.sim
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

*/

module fulltick.raw

/* NUMBERS */

#@Skip DO NOT MODIFY @EndSkip ####################################
Expand Down
2 changes: 2 additions & 0 deletions modules/fulltick/widget/FAdjuster.sim
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
* @Time - 08:05 AM
*/

module fulltick.widget

call "FValuator.sim"

class FAdjuster : FValuator
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FBox.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FWidget File for general widget blocks inheritance
call "fulltick/core/FWidget.sim" ? fulltick.core
call fulltick.core.FWidget

#The @Class FBox is a child class inheriting
#Most of it blocks from the @Class FWidget
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FButton.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FBox File for blocks inheritance
call "fulltick/widget/FBox.sim" ? fulltick.core
call fulltick.widget.FBox

/* NUMBERS */

Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FCheckButton.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FBox File for blocks inheritance
call "fulltick/widget/FBox.sim" ? fulltick.core
call fulltick.widget.FBox

/* NUMBERS */

Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FFileChooser.sim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
*/

module fulltick.widget.menu
module fulltick.widget

#call the @Class FWidget File for blocks inheritance
call "./FFileListBox.sim" ? fulltick.core
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FFileListBox.sim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
*/

module fulltick.widget.menu
module fulltick.widget

FILES_TYPE = 0
DIRECTORIES_TYPE = 1
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FFloatInput.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FInput File for blocks inheritance
call "fulltick/widget/FInput.sim" ? fulltick.widget
call fulltick.widget.FInput

#This @Class FFloatInput is child class inheriting most of it
#attributes,blocks and other from it parent @Class FInput. It is
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FIntInput.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
module fulltick.widget

#call the @Class FInput File for blocks inheritance
call "fulltick/widget/FInput.sim" ? fulltick.widget
call fulltick.widget.FInput

#This @Class FIntInput is child class inheriting most of it
#attributes,blocks and other from it parent @Class FInput. It is
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FLabel.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FBox File for blocks inheritance
call "fulltick/widget/FBox.sim" ? fulltick.core
call fulltick.widget.FBox

#The @Class FLabel is a child class inheriting
#Most of it blocks from the @Class FBox widget the different between this
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FLightButton.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FBox File for blocks inheritance
call "fulltick/widget/FButton.sim" ? fulltick.widget
call fulltick.widget.FButton

#The @Class FLightButton is a child class inheriting
#Most of it blocks from the @Class FButton widget. This widget is a #typical button that execute it click in the @Block callback(cb) in
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FMultilineInput.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
module fulltick.widget

#call the @Class FInput File for blocks inheritance
call "fulltick/widget/FInput.sim" ? fulltick.widget
call fulltick.widget.FInput

#This @Class FMultilineInput is child class inheriting most of it
#attributes,blocks and other from it parent @Class FInput. It is
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FMultilineOutput.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
module fulltick.widget

#call the @Class FMultilineInput File for blocks inheritance
call "fulltick/widget/FMultilineInput.sim" ? fulltick.widget
call fulltick.widget.FMultilineInput

#This @Class FMultilineOutput is child class inheriting most of it
#attributes,blocks and other from it parent
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FOutput.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
module fulltick.widget

#call the @Class FInput File for blocks inheritance
call "fulltick/widget/FInput.sim" ? fulltick.widget
call fulltick.widget.FInput

#This @Class FOutput is child class inheriting most of it
#attributes,blocks and other from it parent
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FPasswordInput.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
module fulltick.widget

#call the @Class FInput File for blocks inheritance
call "fulltick/widget/FInput.sim" ? fulltick.widget
call fulltick.widget.FInput

#This @Class FPasswordInput is child class inheriting most of it
#attributes,blocks and other from it parent @Class FInput. It is
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FRadioButton.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FBox File for blocks inheritance
call "fulltick/widget/FButton.sim" ? fulltick.widget
call fulltick.widget.FButton

#The @Class FRadioButton is a child class inheriting
#Most of it blocks from the @Class FButton widget. This widget is a #typical button that execute it click in the @Block callback(cb) in
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FReturnButton.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FBox File for blocks inheritance
call "fulltick/widget/FButton.sim" ? fulltick.widget
call fulltick.widget.FButton

#The @Class FReturnButton is a child class inheriting
#Most of it blocks from the @Class FButton widget. This widget is a #typical button that execute it click in the @Block callback(cb) in
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/FToggleButton.sim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module fulltick.widget

#call the @Class FBox File for blocks inheritance
call "f./FButton.sim" ? fulltick.core
call "./FButton.sim" ? fulltick.core

#The @Class FToggleButton is a child class inheriting
#Most of it blocks from the @Class FButton widget.
Expand Down
2 changes: 2 additions & 0 deletions modules/fulltick/widget/FValuator.sim
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
* @Time - 08:05 AM
*/

module fulltick.widget

call "../core/FWidget.sim"

class FValuator : FWidget
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/menu/FMenu.sim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
*/

module fulltick.widget
module fulltick.widget.menu

#call the @Class FBox File for blocks inheritance
call "../FBox.sim" ? fulltick.widget
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/menu/FMenuBar.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
module fulltick.widget.menu

#call the @Class FMenu File for blocks inheritance
call "fulltick/widget/menu/FMenu.sim" ? fulltick.widget.menu
call fulltick.widget.menu.FMenu

#This @Class FMenuBar @Skip
# ________________________________________________________
Expand Down
2 changes: 1 addition & 1 deletion modules/fulltick/widget/menu/FMenuButton.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
module fulltick.widget.menu

#call the @Class FMenu File for blocks inheritance
call "fulltick/widget/menu/FMenu.sim" ? fulltick.widget.menu
call fulltick.widget.menu.FMenu

#This @Class FMenuButton @Skip
# ____________
Expand Down
4 changes: 2 additions & 2 deletions modules/fulltick/widget/menu/FMenuItem.sim
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
module fulltick.widget.menu

#call the @Class FMenu File for blocks inheritance
call "fulltick/widget/menu/FMenu.sim" ? fulltick.widget.menu
call "fulltick/core/FWidget.sim" ? fulltick.core
call fulltick.widget.menu.FMenu
call fulltick.core.FWidget

#This @Class FMenuBar @Skip
# ________________________________________________________
Expand Down
4 changes: 2 additions & 2 deletions modules/module-map.ako
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

[SimpleVersion](0.3.36)

[DynamicModule]{
Expand All @@ -20,4 +19,5 @@

[Link] {
[trigraph](https://en.wikipedia.org/wiki/Digraphs_and_trigraphs#C)
}
}

4 changes: 3 additions & 1 deletion modules/parser/json/JsonObject.sim
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
* @Time - 08:04 pM
*/

call "parser/json/JsonParser.sim"
module parser.json

call parser.json.JsonParser

class JsonObject : JsonParser

Expand Down
4 changes: 3 additions & 1 deletion modules/parser/json/JsonParser.sim
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
* @Time - 08:04 pM
*/

call "parser/loadparserdll.sim"
module parser.json

call parser.loadparserdll

class JsonParser

Expand Down
4 changes: 2 additions & 2 deletions modules/parser/loadparserdll.sim
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* @Time - 11:44 AM
*/

module simple.utilities.parser
module parser

#Call all the low level function of the @DynamicModule parser
call "simple/core/DynamicLoader.sim" ? simple.core
call simple.core.DynamicLoader
callModule("parser")
2 changes: 1 addition & 1 deletion modules/simple/core/DynamicLoader.sim
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
module simple.core

call "__first_calls.sim"
call "simple/core/String.sim"
call simple.core.String

dynamicModules = []

Expand Down
5 changes: 1 addition & 4 deletions modules/simple/core/List.sim
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,4 @@ class List : Object
@ __INDEX_GREATER_THAN_SIZE
default
throw("Exit !") __exit__
end



end
2 changes: 1 addition & 1 deletion modules/simple/core/Object.sim
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

module simple.core

call "simple/security/Hash.sim"
call simple.security.Hash
call "Types.sim"
call "BaseFields.sim"

Expand Down
6 changes: 3 additions & 3 deletions modules/simple/core/String.sim
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
module simple.core

call "Object.sim"
call "simple/utilities/Conversion.sim"
call "simple/core/DynamicLoader.sim" ? simple.core
call "simple/debugging/Throw.sim" ? simple.debugging
call simple.utilities.Conversion
call simple.core.DynamicLoader
call simple.debugging.Throw
callModule("string_savant")

__Empty = char(0)
Expand Down
3 changes: 2 additions & 1 deletion modules/simple/core/loadcoredymodule.sim
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module simple.core

call "simple/core/DynamicLoader.sim" ? simple.core
call simple.core.DynamicLoader
callModule("core_dynamic_module")
Loading

0 comments on commit c2111ce

Please sign in to comment.