aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmljs/qmljscheck.cpp
Commit message (Expand)AuthorAgeFilesLines
* QmlJS: Add initial 'Find Usages' support.Christian Kamm2010-09-241-1/+1
* QmlJS: Speed up Link significantly, provide more info on imports.Christian Kamm2010-09-161-9/+14
* QmlJS: Improve performance by avoiding two links in SemanticHighlighter.Christian Kamm2010-08-311-3/+2
* QmlJS: Add missing null checks before using scopeChain().qmlTypes.Christian Kamm2010-08-301-1/+2
* QmlJS: Refactor LookupContext creation for speed.Christian Kamm2010-08-261-2/+1
* Make QML color validation code reusable.Leandro Melo2010-08-021-18/+21
* QmlJS: Change to a nicer way of marking strings for translation.Christian Kamm2010-05-191-17/+16
* QmlJS: Generalize EasingCurve name check to all enums.Christian Kamm2010-05-191-21/+19
* QmlJS: Allow numbers to be assigned to easing.type.Christian Kamm2010-05-191-2/+2
* QmlJS: Change way to translate strings to nicer one.Christian Kamm2010-04-281-24/+9
* QmlJS: Remove Link::scopeChainAt, initialize scope chain in constructor.Christian Kamm2010-04-221-3/+0
* QmlJS: Don't produce Qml type errors if plugins are imported.Christian Kamm2010-04-071-1/+3
* Changed QML reading in QML designer to use the interpreter for property types.Erik Verbruggen2010-04-061-0/+6
* QmlJS: Only collect linker errors for the current file being checked.Christian Kamm2010-03-291-1/+1
* Add errors for incorrect imports in Qml.Christian Kamm2010-03-251-0/+1
* Improve Qml code model import handling.Christian Kamm2010-03-181-2/+2
* Long live the king!hjk2010-03-051-1/+1
* Changed error to warning when using a string literal for an ID.Erik Verbruggen2010-03-041-3/+8
* Silence silly gcc warning.ck2010-03-021-3/+3
* Changed color name checks to use new QColor::isValidColor method.Erik Verbruggen2010-03-021-1/+1
* Removed private header dependencies and introduced loading QML types from XML...Erik Verbruggen2010-03-011-9/+15
* QmlJS: Fix compilation with latest changes of QDeclarativeKai Koehne2010-02-261-2/+2
* Fixed possible crash when error recovery yielded a partially correct AST.Erik Verbruggen2010-02-241-0/+6
* Add check for anchor line, changed value assignment checks into visitor.Christian Kamm2010-02-231-68/+106
* Check that the id property is a plain lowercase identifier.Christian Kamm2010-02-231-0/+26
* Add check for correct color string in Qml.Christian Kamm2010-02-231-37/+53
* Add Qml type checks for assigning literals to properties.Christian Kamm2010-02-231-5/+37
* Move the scope building logic into QmlJS::ScopeBuilder.Christian Kamm2010-02-221-62/+10
* Pass in the whole AST path for scope creation.Christian Kamm2010-02-221-3/+2
* Make QmlJS scope building more flexible.Christian Kamm2010-02-221-13/+16
* Semantic checking for easing curve names.Erik Verbruggen2010-02-191-9/+62
* Made the warnings/errors translatable.Erik Verbruggen2010-02-191-6/+9
* Suppress 'unknown property' warning after finding an unknown type.Erik Verbruggen2010-02-191-6/+17
* Don't try to look up members of attached properties.Christian Kamm2010-02-181-1/+8
* Error when binding to nonexistant member of property in Qml.Christian Kamm2010-02-181-3/+24
* Fix possible crash in QmlJS semantic checker.Christian Kamm2010-02-181-4/+4
* Fix possible crash in QmlJS semantic checker.Christian Kamm2010-02-181-1/+4
* Workaround for not erroring on anchors { ... } in Qml for now.Christian Kamm2010-02-171-0/+9
* Don't error for unknown property names inside ListElement for now.Christian Kamm2010-02-171-2/+14
* Don't show 'invalid property name' errors if we can't resolve the type.Christian Kamm2010-02-161-3/+9
* Fix incorrect 'invalid property' errors for PropertyChanges.Christian Kamm2010-02-161-9/+57
* Add QmlJS semantic checker.Christian Kamm2010-02-161-0/+140
* Rename QmlJS::Check -> QmlJS::Evaluate.Christian Kamm2010-02-151-604/+0
* Removed unnecessary includes of qmljslink.hChristian Kamm2010-02-121-1/+0
* Initial support of `Follow symbol under cursor' for QML/JS.Roberto Raggi2010-02-091-15/+15
* Add support for lazy prototypes.Roberto Raggi2010-02-031-2/+2
* Completion for global variables in JS.Roberto Raggi2010-02-031-6/+6
* Get rid of Environment, introduce external ScopeChain in Link.Christian Kamm2010-02-031-12/+10
* Introduced QML/JS references.Roberto Raggi2010-02-031-1/+12
* Try to get the type from a qualified-id.Roberto Raggi2010-02-021-3/+26