Skip to content

Commit

Permalink
Merge pull request #1909 from kujirahand/ver3_6_43
Browse files Browse the repository at this point in the history
v3.6.43
  • Loading branch information
kujirahand authored Jan 31, 2025
2 parents c5a42bb + b30ac02 commit 9902368
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nadesiko3core",
"version": "3.6.42",
"version": "3.6.43",
"description": "Japanese Programming Language Nadesiko v3 core",
"main": "index.mjs",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions core/src/nako_core_version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NakoCoreVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const coreVersion: NakoCoreVersion = {
version: '3.6.42',
version: '3.6.43',
major: 3,
minor: 6,
patch: 42
patch: 43
}
export default coreVersion
2 changes: 1 addition & 1 deletion core/src/nako_lexer.mts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export class NakoLexer {
}
}
// 無名関数の定義:「xxには**」があった場合 ... 暗黙的な関数定義とする
if ((t.type === 'word' && t.josi === 'には') || (t.type === 'word' && t.josi === 'は~')) {
if (t.type === 'word' && t.josi === 'には') {
t.josi = 'には'
tokens.splice(i + 1, 0, { type: 'def_func', value: '関数', indent: t.indent, line: t.line, column: t.column, file: t.file, josi: '', startOffset: t.endOffset, endOffset: t.endOffset, rawJosi: '', tag: '無名関数' })
i++
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nadesiko3",
"version": "3.6.42",
"version": "3.6.43",
"description": "Japanese Programming Language",
"type": "module",
"main": "src/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/nako_version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NakoVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const nakoVersion: NakoVersion = {
version: '3.6.42',
version: '3.6.43',
major: 3,
minor: 6,
patch: 42
patch: 43
}
export default nakoVersion

0 comments on commit 9902368

Please sign in to comment.