Fixes #478 - TagLookup fails when merging taglibs

This commit is contained in:
Phillip Gates-Idem 2016-12-20 17:17:35 -05:00
parent b88cd72d4e
commit cbd95df50e
2 changed files with 19 additions and 1 deletions

View File

@ -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

View File

@ -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) {