mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
Fixes #478 - TagLookup fails when merging taglibs
This commit is contained in:
parent
b88cd72d4e
commit
cbd95df50e
18
CHANGELOG.md
18
CHANGELOG.md
@ -3,6 +3,24 @@ Changelog
|
||||
|
||||
# 3.x
|
||||
|
||||
## 3.13.x
|
||||
|
||||
### 3.13.2
|
||||
|
||||
- Fixed [#478](TagLookup fails when merging taglibs) - TagLookup fails when merging taglibs
|
||||
|
||||
### 3.13.1
|
||||
|
||||
- Fixes [#465](https://github.com/marko-js/marko/issues/465)
|
||||
|
||||
### 3.13.0
|
||||
|
||||
## 3.12.x
|
||||
|
||||
### 3.12.0
|
||||
|
||||
- Added warnings for using render methods when you want string output ([Pull Request #450](https://github.com/marko-js/marko/pull/450) by [@mlrawlings](https://github.com/mlrawlings))
|
||||
|
||||
## 3.11.x
|
||||
|
||||
### 3.11.8
|
||||
|
||||
@ -5,7 +5,7 @@ var Node = require('./Node');
|
||||
class Identifier extends Node {
|
||||
constructor(def) {
|
||||
super('Identifier');
|
||||
this.name = def.name;
|
||||
this.name = def ? def.name : undefined;
|
||||
}
|
||||
|
||||
generateCode(codegen) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user