forked from kuina/Kuin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/origin/develop'
- Loading branch information
Showing
68 changed files
with
1,601 additions
and
714 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
------------------------------------------------------------------------------- | ||
Kuin Programming Language | ||
v.2018.5.17 | ||
v.2018.6.17 | ||
(C) Kuina-chan | ||
------------------------------------------------------------------------------- | ||
|
||
|
@@ -43,6 +43,16 @@ v.2018.5.17 | |
4. 変更履歴 | ||
------------------------------------------------------------------------------- | ||
|
||
v.2018.6.17 | ||
- 互換性が失われる変更 | ||
- 「+**」構文の廃止と、オーバーライド元メソッドを参照する「super」構文の | ||
追加 | ||
- 16進数リテラルの構文を「16#」から「0x」に変更 | ||
- 細かな機能追加 | ||
- list.find、list.findLastメソッドの追加 | ||
- math@knapsack、math@dijkstra、math@bellmanFord、math@floydWarshall、 | ||
draw@filterNone、draw@filterMonotone関数の追加 | ||
|
||
v.2018.5.17 | ||
- 輪郭線を描画するメソッド[email protected]の追加 | ||
- トゥーンレンダリングで描画するメソッド[email protected]の追加 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
+const userMin: int :: 16#00000000 | ||
+const userMax: int :: 16#0000FFFF | ||
+const accessViolation: int :: 16#C0000005 | ||
+const noMem: int :: 16#C0000017 | ||
+const floatInvalidOperation: int :: 16#C0000090 | ||
+const intDivideByZero: int :: 16#C0000094 | ||
+const stackOverflow: int :: 16#C00000FD | ||
+const ctrlCExit: int :: 16#C000013A | ||
+const dbgAssertFailed: int :: 16#E9170000 | ||
+const classCastFailed: int :: 16#E9170001 | ||
+const dbgArrayIdxOutOfRange: int :: 16#E9170002 | ||
+const dbgIntOverflow: int :: 16#E9170003 | ||
+const invalidCmp: int :: 16#E9170004 | ||
+const libClassInvalidOperation: int :: 16#E9170005 | ||
+const dbgArgOutDomain: int :: 16#E9170006 | ||
+const fileReadFailed: int :: 16#E9170007 | ||
+const invalidDataFmt: int :: 16#E9170008 | ||
+const deviceInitFailed: int :: 16#E9170009 | ||
+const dbgInoperableState: int :: 16#E917000A | ||
+const userMin: int :: 0x00000000 | ||
+const userMax: int :: 0x0000FFFF | ||
+const accessViolation: int :: 0xC0000005 | ||
+const noMem: int :: 0xC0000017 | ||
+const floatInvalidOperation: int :: 0xC0000090 | ||
+const intDivideByZero: int :: 0xC0000094 | ||
+const stackOverflow: int :: 0xC00000FD | ||
+const ctrlCExit: int :: 0xC000013A | ||
+const dbgAssertFailed: int :: 0xE9170000 | ||
+const classCastFailed: int :: 0xE9170001 | ||
+const dbgArrayIdxOutOfRange: int :: 0xE9170002 | ||
+const dbgIntOverflow: int :: 0xE9170003 | ||
+const invalidCmp: int :: 0xE9170004 | ||
+const libClassInvalidOperation: int :: 0xE9170005 | ||
+const dbgArgOutDomain: int :: 0xE9170006 | ||
+const fileReadFailed: int :: 0xE9170007 | ||
+const invalidDataFmt: int :: 0xE9170008 | ||
+const deviceInitFailed: int :: 0xE9170009 | ||
+const dbgInoperableState: int :: 0xE917000A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.