- Aug 08, 2011
-
-
Christian Kamm authored
The distinction between QmlJS and QmlJS::Interpreter has always been weak and the extra namespace just added an unnecessary complication. Change-Id: I4db8ef4bd91b5f6bf610a9d23fdbf55bd60250fc Reviewed-on: http://codereview.qt.nokia.com/2743 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@nokia.com>
-
Christian Kamm authored
Previously Context was not entirely thread safe and had to be copied locally. Now it is thread safe and its lifetime managed by QSharedPointer. The non-safe parts were moved into ScopeChain in a previous commit. Change-Id: I851a93de85cbd6391dbea0fe33b011e2e093addb Reviewed-on: http://codereview.qt.nokia.com/1695 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@nokia.com>
-
Christian Kamm authored
Context is created by Link and has information about imports for all Documents in a Snapshot. ScopeChain represents how lookup is done at a specific place in a Document. Change-Id: I874102d57bbaf1a497fa3f27633bed6ee75dcf10 Reviewed-on: http://codereview.qt.nokia.com/1694 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@nokia.com>
-
- Jul 05, 2011
-
-
Christian Kamm authored
Change-Id: I91331b7039e27e2f57cc19b985c8ed86c955ec9e Reviewed-on: http://codereview.qt.nokia.com/1042 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@nokia.com>
-
Christian Kamm authored
Also move to a separate file. Change-Id: I05910e8cf04a533b5d09a1c16e612e3b99b1d606 Reviewed-on: http://codereview.qt.nokia.com/1039 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@nokia.com>
-
- Jun 07, 2011
-
-
Fawzi Mohamed authored
correctly insert the scope for code blocks in UiScriptBindings and UiPublicMember, and improve find usages for types (correctly detecting variables in the same scope) Change-Id: Iaaf1a59f041f3831fbe04243b220fb85fde76479 Reviewed-on: http://codereview.qt.nokia.com/335 Reviewed-by:
Christian Kamm <christian.d.kamm@nokia.com>
-
- May 27, 2011
-
-
Christian Kamm authored
Task-number: QTCREATORBUG-4981 Change-Id: I06d3e428ca4928296a3d5977aeff29fc3217c37c Reviewed-on: http://codereview.qt.nokia.com/175 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@nokia.com>
-
- May 24, 2011
-
-
Christian Kamm authored
* property -> lookupMember * setProperty -> setMember * removeProperty -> removeMember Change-Id: I638479ee2b90b684283e714630bdcab237f6b3f2 Done-with: Fawzi Mohamed Reviewed-on: http://codereview.qt.nokia.com/77 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@nokia.com>
-
- May 06, 2011
-
-
Tobias Hunger authored
Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
-
Christian Kamm authored
To avoid order-of-initialization problems. Reviewed-by: Thomas Hartmann
-
- May 04, 2011
-
-
Christian Kamm authored
Task-number: QTCREATORBUG-2306
-
- Apr 13, 2011
-
-
hjk authored
-
- Feb 21, 2011
-
-
Christian Kamm authored
The problem was that several lookup calls suddenly failed because the actual QML types were no longer in the default scope chain. However, the QML documentation says the type names are in the scope. Also, 'MyComponent.' in a JS-expression context only showed the attached properties of MyComponent and missed the enums. With this change completion now may offers too many options, but that's better than missing some. This reverts parts of 490f2797 Reviewed-by: Leandro Melo
-
- Feb 10, 2011
-
-
Christian Kamm authored
-
- Jan 12, 2011
- Dec 17, 2010
-
-
con authored
-
- Nov 25, 2010
-
-
Christian Kamm authored
Reviewed-by: Erik Verbruggen
-
Christian Kamm authored
Reviewed-by: Erik Verbruggen
-
Christian Kamm authored
* Bind::usesQmlPrototype is now significantly more performant * type environments are no longer hashed by filename, but rather by Document * * duplicate scope builds are avoided Task-number: QTCREATORBUG-2835 Reviewed-by: Erik Verbruggen
-
- Nov 15, 2010
-
-
Christian Kamm authored
-
- Oct 20, 2010
-
-
Christian Kamm authored
Task-number: QTCREATORBUG-2802 Reviewed-by: Roberto Raggi
-
- Oct 14, 2010
-
-
Christian Kamm authored
Task-number: QTCREATORBUG-2737 Reviewed-by: Kai Koehne
-
- Oct 01, 2010
-
-
Christian Kamm authored
Reviewed-by: Thomas Hartmann
-
- Sep 24, 2010
-
-
Christian Kamm authored
-
- Aug 25, 2010
-
-
Christian Kamm authored
In preparation for caching Contexts. Reviewed-by: Erik Verbruggen
-
- Jul 09, 2010
-
-
Christian Kamm authored
-
- May 19, 2010
-
-
Christian Kamm authored
* Context::build was potentially dangerous. Link and ScopeBuilder went out of scope before their results stopped being used. * ScopeBuilder: If no function scope object was found, don't add it. Reviewed-by: Erik Verbruggen
-
Christian Kamm authored
Task-number: QTCREATORBUG-1413 Reviewed-by: Erik Verbruggen
-
- May 12, 2010
-
-
Christian Kamm authored
Task-number: QTCREATORBUG-1388 Reviewed-by: Roberto Raggi
-
- Apr 22, 2010
-
-
Christian Kamm authored
Use ScopeBuilder.push(...) for the same functionality. Reviewed-by: Erik Verbruggen
-
- Apr 20, 2010
-
-
Christian Kamm authored
Allows completion of local variable and function names. Task-number: QTCREATORBUG-942 Reviewed-by: Roberto Raggi
-
- Mar 03, 2010
-
-
Christian Kamm authored
* The "Script" type is now implicitly available without imports. * No errors for bindings inside a Connections element. Reviewed-by: Roberto Raggi
-
- Mar 01, 2010
-
-
Erik Verbruggen authored
-
- Feb 25, 2010
-
-
Erik Verbruggen authored
-
- Feb 23, 2010
-
-
Christian Kamm authored
By always setting the scope object, even if it is identical to the root object. Done-with: Erik Verbruggen
-
- Feb 22, 2010
-
-
Christian Kamm authored
-